Skip to content
Snippets Groups Projects
Commit 22d1cbf5 authored by Bruno Meyer's avatar Bruno Meyer :cry:
Browse files

SCRUM#43: Update http route to https route on production

parent 106df053
No related branches found
No related tags found
1 merge request!17SCRUM#43: Update http route to https route on production
...@@ -138,7 +138,7 @@ export class MockReportService implements ReportService { ...@@ -138,7 +138,7 @@ export class MockReportService implements ReportService {
@Injectable() @Injectable()
export class WebserviceReportService implements ReportService { export class WebserviceReportService implements ReportService {
apiRoot: string = 'http://pinsis.c3sl.ufpr.br/api/data/'; apiRoot: string = 'https://pinsis.c3sl.ufpr.br/api/data/';
apiPeriod: string; apiPeriod: string;
constructor(private http: HttpClient) { } constructor(private http: HttpClient) { }
......
...@@ -3,5 +3,5 @@ import { WebserviceReportService } from "../app/report.service"; ...@@ -3,5 +3,5 @@ import { WebserviceReportService } from "../app/report.service";
export const environment = { export const environment = {
production: true, production: true,
reportServiceType: WebserviceReportService, reportServiceType: WebserviceReportService,
webserviceUrl: "http://pinsis.c3sl.ufpr.br" webserviceUrl: "https://pinsis.c3sl.ufpr.br"
}; };
\ No newline at end of file
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