Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mélanie Chauvel
funkwhale
Commits
add226ba
Commit
add226ba
authored
Nov 21, 2020
by
Ciarán Ainsworth
Browse files
Merge branch 'fix-disable-plugins' into 'develop'
Fix disabling plugins See merge request
funkwhale/funkwhale!1240
parents
79219fd6
9014c782
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/changelog.d/plugins.bugfix
0 → 100644
View file @
add226ba
Fixed an issue that prevented disabling plugins
\ No newline at end of file
front/src/components/auth/Plugin.vue
View file @
add226ba
...
...
@@ -91,7 +91,7 @@ export default {
this
.
isLoading
=
true
this
.
errors
=
[]
let
url
=
`plugins/
${
this
.
plugin
.
name
}
`
let
enableUrl
=
this
.
enabled
?
`
${
url
}
/enable`
:
`
${
url
}
/
en
able`
let
enableUrl
=
this
.
enabled
?
`
${
url
}
/enable`
:
`
${
url
}
/
dis
able`
await
axios
.
post
(
enableUrl
)
try
{
await
axios
.
post
(
url
,
this
.
values
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment