fix lint issues

This commit is contained in:
William Pitcock 2018-06-27 13:28:07 +00:00
parent 61d40f40ae
commit fe06beae18
1 changed files with 3 additions and 1 deletions

View File

@ -41,13 +41,14 @@ const UserSettings = {
private: { selected: this.newdefaultScope === 'private' },
direct: { selected: this.newdefaultScope === 'direct' }
}
},
}
},
methods: {
updateProfile () {
const name = this.newname
const description = this.newbio
const locked = this.newlocked
/* eslint-disable camelcase */
const default_scope = this.newdefaultScope
this.$store.state.api.backendInteractor.updateProfile({params: {name, description, locked, default_scope}}).then((user) => {
if (!user.error) {
@ -55,6 +56,7 @@ const UserSettings = {
this.$store.commit('setCurrentUser', user)
}
})
/* eslint-enable camelcase */
},
changeVis (visibility) {
this.newdefaultScope = visibility