Skip to content
Snippets Groups Projects
Commit 0472919a authored by Isaac Evavold's avatar Isaac Evavold
Browse files

use https to load static data

parent bf155448
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ export class DarsApiService {
// Prevents errors locally
if (environment.production) {
const url =
'http://dev-enroll-app-data.s3-website-us-east-1.amazonaws.com/degreeprograms.json';
'https://dev-enroll-app-data.s3-website-us-east-1.amazonaws.com/degreeprograms.json';
return this.http.get<DegreePrograms>(url, HTTP_OPTIONS);
} else {
return of(degreeProgramsResponse);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment