2017-05-10 11:04:06 +02:00
|
|
|
|
|
|
|
export class AppConfig {
|
|
|
|
|
|
|
|
public readonly apiUrl = '';
|
|
|
|
|
2017-06-08 19:46:36 +02:00
|
|
|
public readonly apiAppUserPath = '/account/';
|
2017-05-10 11:04:06 +02:00
|
|
|
public readonly apiAwardPath = '/awardings/';
|
|
|
|
public readonly apiDecorationPath = '/decorations/';
|
|
|
|
public readonly apiAuthenticationPath = '/authenticate';
|
2017-06-08 19:46:36 +02:00
|
|
|
public readonly apiSignupPath = '/authenticate/signup';
|
2017-05-10 11:04:06 +02:00
|
|
|
public readonly apiRankPath = '/ranks/';
|
|
|
|
public readonly apiSquadPath = '/squads/';
|
|
|
|
public readonly apiUserPath = '/users/';
|
2017-05-11 21:46:28 +02:00
|
|
|
public readonly apiOverviewPath = '/overview';
|
2017-05-10 11:04:06 +02:00
|
|
|
|
|
|
|
}
|