Skip to content

Commit

Permalink
apps: add app-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
jankapunkt committed Dec 23, 2022
1 parent c2c7220 commit 9e8ca40
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jkuester:autoform-password2@2.1.0
jquery@3.0.0
launch-screen@1.3.0
leaonline:method-factory@1.1.0
leaonline:oauth2-server@4.2.1
leaonline:oauth2-server@4.3.0
leaonline:ratelimit-factory@1.0.0
leaonline:testing@1.0.0
leaonline:theme@1.0.0
leaonline:theme@1.1.0
leaonline:utils@1.0.0
livedata@1.0.18
lmieulet:meteor-coverage@3.2.0
Expand Down
2 changes: 1 addition & 1 deletion .settingsschema.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const settingsSchema = schema({
},
secret: {
type: String,
regEx: SimpleSchema.RegEx.idOfLength(32, null)
min: 32
},
url: {
type: String,
Expand Down
18 changes: 16 additions & 2 deletions settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,23 @@
"description": "Diagnostic app",
"clientId": "Lb5soRv7RH2g8inRc",
"secret": "Y4yNeHM3bniSogeWacRcYZ3S5yz3TCuW",
"url": "http://localhost:3000",
"url": "http://localhost:8080",
"redirectUris": [
"http://localhost:3000/_oauth/lea"
"http://localhost:8080/_oauth/lea"
],
"grants": [
"authorization_code"
]
},
{
"key": "app",
"title": "leaonline.app",
"description": "Mobile app (backend)",
"clientId": "DTFkydiJE7s4Tmpd3",
"secret": "j_6vW8UnPEa27FpznqQcAUdLzOhuFT4m",
"url": "http://localhost:8080",
"redirectUris": [
"http://localhost:8080/_oauth/lea"
],
"grants": [
"authorization_code"
Expand Down

0 comments on commit 9e8ca40

Please sign in to comment.