Skip to content

Commit

Permalink
chore(demo): secure upload url
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuri committed Jun 8, 2018
1 parent 5445f1e commit 83fe66e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class AppComponent {
if (output.type === 'allAddedToQueue') {
const event: UploadInput = {
type: 'uploadAll',
url: 'http://ngx-uploader.com/upload',
url: 'https://ngx-uploader.com/upload',
method: 'POST',
data: { foo: 'bar' }
};
Expand Down Expand Up @@ -53,7 +53,7 @@ export class AppComponent {
startUpload(): void {
const event: UploadInput = {
type: 'uploadAll',
url: 'http://ngx-uploader.com/upload',
url: 'https://ngx-uploader.com/upload',
method: 'POST',
data: { foo: 'bar' }
};
Expand Down

0 comments on commit 83fe66e

Please sign in to comment.