passo_mobile_app/lib/utils/urls.dart

29 lines
619 B
Dart
Raw Normal View History

class Url {
2023-01-17 07:52:31 +00:00
static final Url _instance = Url();
static Url get instance => _instance;
2023-01-17 07:52:31 +00:00
String host() {
// return '192.168.10.221:3003';
// return 'agusandelnorte.gov.ph';
return 'devweb.agusandelnorte.gov.ph';
2023-01-17 07:52:31 +00:00
}
String authentication() {
return '/api/account/auth/login/';
2023-01-17 07:52:31 +00:00
}
String profileInformation(){
return '/api/jobnet_app/profile/pds/';
}
String eligibilities(){
return "/api/jobnet_app/eligibilities/";
}
// location utils path
String getCounties(){
return "/api/jobnet_app/countries/";
}
String getRegions(){
return "/api/web_app/location/region/";
}
2023-01-17 07:52:31 +00:00
}