This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Update more constants names to UPPER_CASE, change config in auth…
… module
- Loading branch information
1 parent
4a98023
commit 084dce9
Showing
76 changed files
with
382 additions
and
339 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { IAuthModalOauthProvider, ILanguagesItem } from '@rucken/core'; | ||
|
||
export interface ICoreConfig { | ||
app: { | ||
id: string; | ||
title: string; | ||
description: string; | ||
languages: ILanguagesItem[] | ||
}; | ||
authModal: { | ||
signInInfoMessage: string; | ||
signUpInfoMessage: string; | ||
}; | ||
oauth: IAuthModalOauthProvider[]; | ||
} |
Oops, something went wrong.