Task/move admin service to UI library (#6159)
* Move admin service to UI library * Update changelogpull/6161/head
parent
feb25c9266
commit
d4d6ce1d07
@ -0,0 +1,5 @@
|
||||
export interface GfEnvironment {
|
||||
lastPublish: string | null;
|
||||
production: boolean;
|
||||
stripePublicKey: string;
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
import { InjectionToken } from '@angular/core';
|
||||
|
||||
import { GfEnvironment } from './environment.interface';
|
||||
|
||||
export const GF_ENVIRONMENT = new InjectionToken<GfEnvironment>(
|
||||
'GF_ENVIRONMENT'
|
||||
);
|
||||
@ -0,0 +1,2 @@
|
||||
export * from './environment.interface';
|
||||
export * from './environment.token';
|
||||
@ -1 +1,2 @@
|
||||
export * from './admin.service';
|
||||
export * from './data.service';
|
||||
|
||||
Loading…
Reference in new issue