Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SiB Auth
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
15
Issues
15
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Startin blox
framework
SiB Auth
Compare Revisions
v0.7.5...v0.8.0
Source
v0.8.0
Select Git revision
...
Target
v0.7.5
Select Git revision
Compare
Commits (2)
minor: sib-core@0.9
· a6cc5ee5
Jean-Baptiste Pasquier
authored
Oct 11, 2019
a6cc5ee5
Merge branch 'oidc-0.9' into 'master'
· dcfa1ddd
Clément
authored
Oct 11, 2019
minor: sib-core@0.9-beta See merge request
!18
dcfa1ddd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
11 deletions
+6
-11
.eslintrc
.eslintrc
+3
-8
index.html
index.html
+2
-2
sib-auth.js
sib-auth.js
+1
-1
No files found.
.eslintrc
View file @
dcfa1ddd
{
"parser": "babel-eslint",
"extends": [
"airbnb-base"
],
"extends": ["airbnb-base"],
"env": {
"browser": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
,
"sourceType": "module"
},
"rules": {
"import/no-unresolved": 0,
"import/extensions": [
0,
"always"
],
"import/extensions": [0, "always"]
}
}
index.html
View file @
dcfa1ddd
...
...
@@ -44,13 +44,13 @@
<sib-auth>
<sib-auth-provider
data-authority=
"https://api.
test-paris
.happy-dev.fr/"
data-authority=
"https://api.
alpha
.happy-dev.fr/"
data-client_id=
"234528"
data-id=
"paris"
>
</sib-auth-provider>
<sib-auth-provider
data-authority=
"https://api.
test-paris
.happy-dev.fr/"
data-authority=
"https://api.
alpha
.happy-dev.fr/"
data-client_id=
"234528"
data-id=
"paris2"
>
...
...
sib-auth.js
View file @
dcfa1ddd
import
auth
from
'
https://dev.jspm.io/solid-auth-client
'
;
import
{
Helpers
}
from
'
https://unpkg.com/@startinblox/core@0.
8
'
;
import
{
Helpers
}
from
'
https://unpkg.com/@startinblox/core@0.
9
'
;
const
baseUrl
=
import
.
meta
.
url
.
replace
(
/
\/[^/]
*$/
,
''
);
Helpers
.
importCSS
(
`
${
baseUrl
}
/sib-auth.css`
);
...
...