Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
admin-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
admin-fe
Commits
fdff6a4d
Commit
fdff6a4d
authored
5 years ago
by
Maxim Filippov
Browse files
Options
Downloads
Plain Diff
Merge branch 'oauth-admin-scope' into 'develop'
Added 'admin' & 'push' OAuth scopes See merge request
!69
parents
4d7889d7
e9b62693
No related branches found
No related tags found
1 merge request
!69
Added 'admin' & 'push' OAuth scopes
Pipeline
#20960
passed
5 years ago
Stage: lint
Stage: build
Stage: test
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
src/api/__mocks__/login.js
+1
-1
1 addition, 1 deletion
src/api/__mocks__/login.js
src/api/login.js
+1
-1
1 addition, 1 deletion
src/api/login.js
src/views/login/index.vue
+1
-0
1 addition, 0 deletions
src/views/login/index.vue
with
4 additions
and
2 deletions
CHANGELOG.md
+
1
−
0
View file @
fdff6a4d
...
...
@@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
-
**breaking**
PleromaFE login feature relies on
`admin`
scope presence in PleromaFE token (older versions of PleromaFE don't support it)
-
Moves emoji pack configuration from the main menu to settings tab, redesigns it and fixes bugs
-
`mailerEnabled`
must be set to
`true`
in order to require password reset (password reset currently only works via email)
-
Remove fetching initial data for configuring server settings
...
...
This diff is collapsed.
Click to expand it.
src/api/__mocks__/login.js
+
1
−
1
View file @
fdff6a4d
...
...
@@ -8,7 +8,7 @@ export async function loginByUsername(username, password, authHost) {
const
verifyHost
=
user
.
authHost
===
authHost
const
data
=
{
'
token_type
'
:
'
Bearer
'
,
'
scope
'
:
'
read write follow
'
,
'
scope
'
:
'
read write follow
push admin
'
,
'
refresh_token
'
:
'
foo123
'
,
'
me
'
:
'
bob
'
,
'
expires_in
'
:
600
,
...
...
This diff is collapsed.
Click to expand it.
src/api/login.js
+
1
−
1
View file @
fdff6a4d
...
...
@@ -9,7 +9,7 @@ export async function loginByUsername(username, password, authHost) {
data
:
{
client_name
:
`AdminFE_
${
Math
.
random
()}
`
,
redirect_uris
:
`
${
window
.
location
.
origin
}
/oauth-callback`
,
scopes
:
'
read write follow
'
scopes
:
'
read write follow
push admin
'
}
})
...
...
This diff is collapsed.
Click to expand it.
src/views/login/index.vue
+
1
−
0
View file @
fdff6a4d
...
...
@@ -41,6 +41,7 @@
<el-button
:loading=
"loading"
class=
"login-button"
type=
"primary"
@
click.native.prevent=
"handleLogin"
>
{{
$t
(
'
login.logIn
'
)
}}
</el-button>
<!-- Note: PleromaFE login feature relies on admin scope presence in PleromaFE token (older versions of PleromaFE don't support it) -->
<el-button
v-if=
"pleromaFEToken"
:loading=
"loadingPleromaFE"
class=
"login-button"
type=
"primary"
@
click.native.prevent=
"handlePleromaFELogin"
>
{{
$t
(
'
login.logInViaPleromaFE
'
)
}}
</el-button>
...
...
This diff is collapsed.
Click to expand it.
Eugenij
@eugenijm
mentioned in issue
#55 (closed)
·
5 years ago
mentioned in issue
#55 (closed)
mentioned in issue #55
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment