Browse Source
Task/remove deprecated public Stripe key (part 3) (#6160)
* Remove deprecated public Stripe key
pull/6217/head
Thomas Kaul
3 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
2 additions and
5 deletions
-
apps/client/src/environments/environment.prod.ts
-
apps/client/src/environments/environment.ts
-
libs/ui/src/lib/environment/environment.interface.ts
|
|
|
@ -2,6 +2,5 @@ import type { GfEnvironment } from '@ghostfolio/ui/environment'; |
|
|
|
|
|
|
|
export const environment: GfEnvironment = { |
|
|
|
lastPublish: '{BUILD_TIMESTAMP}', |
|
|
|
production: true, |
|
|
|
stripePublicKey: '' |
|
|
|
production: true |
|
|
|
}; |
|
|
|
|
|
|
|
@ -6,8 +6,7 @@ import type { GfEnvironment } from '@ghostfolio/ui/environment'; |
|
|
|
|
|
|
|
export const environment: GfEnvironment = { |
|
|
|
lastPublish: null, |
|
|
|
production: false, |
|
|
|
stripePublicKey: '' |
|
|
|
production: false |
|
|
|
}; |
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
@ -1,5 +1,4 @@ |
|
|
|
export interface GfEnvironment { |
|
|
|
lastPublish: string | null; |
|
|
|
production: boolean; |
|
|
|
stripePublicKey: string; |
|
|
|
} |
|
|
|
|