This commit is contained in:
tiago.kayaya
2021-02-11 15:20:47 +01:00
parent 810d073e26
commit c561e91b15
5 changed files with 13 additions and 7 deletions
+7
View File
@@ -148,6 +148,13 @@ export class ProcessesService {
return this.http.get<any>(`${geturl}`, options);
}
GetSubjectType(){
const geturl = environment.apiURL + 'ecm/SubjectType';
let options = {
headers: this.headers,
};
return this.http.get<any>(`${geturl}`, options);
}