10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
export const API_CONFIG = {
|
|
baseUrl: '/api',
|
|
endpoints: {
|
|
auth: '/auth',
|
|
currentUserProfile: '/users/me',
|
|
tenantContext: '/tenants/current-context',
|
|
permissionContext: '/users/me/permissions',
|
|
},
|
|
};
|