-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-> Rework auth system -> Added billing info
- Loading branch information
Showing
23 changed files
with
581 additions
and
129 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,52 @@ | ||
{ | ||
|
||
} | ||
"Change Comment": { | ||
"prefix": "changecomment", | ||
"body": [ | ||
"/* ---------------------------", | ||
" * Author: $1 Date: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}", | ||
" * ", | ||
" * Changes: ", | ||
" * - $2", | ||
" * ", | ||
" * ", | ||
" * ---------------------------*/" | ||
], | ||
"description": "Snippet for a change comment with author and date" | ||
}, | ||
"S_GetTranslation": { | ||
"prefix": "S_GetTranslation", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["Translation.getTranslation('$1')"], | ||
"description": "Get a translation from i18n!" | ||
}, | ||
"S_GetTranslationTemplate": { | ||
"prefix": "S_GetTranslationTemplate", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["{{ Translation.getTranslation('$1') }}"], | ||
"description": "Get a translation from i18n!" | ||
}, | ||
"S_GetSetting": { | ||
"prefix": "S_GetSetting", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["Settings.getSetting('$1')"], | ||
"description": "Get a setting from settings!" | ||
}, | ||
"S_GetSettingVue": { | ||
"prefix": "S_GetSetting", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["{{ Settings.getSetting('$1') }}"], | ||
"description": "Get a setting from settings!" | ||
}, | ||
"S_GetSessionInfo": { | ||
"prefix": "S_GetSessionInfo", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["Session.getInfo('$1')"], | ||
"description": "Get a session info like username or other user details!" | ||
}, | ||
"S_GetSessionInfoVue": { | ||
"prefix": "S_GetSessionInfo", | ||
"scope": "vue,ts,tsx,js,jsx,html", | ||
"body": ["{{ Session.getInfo('$1') }}"], | ||
"description": "Get a session info like username or other user details!" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"settings.import": "../.vscode/settings.json", | ||
"cSpell.words": [ | ||
"Cassian", | ||
"doctypehtml", | ||
|
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
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
Oops, something went wrong.