Skip to content

Commit

Permalink
style(vue,js): Fix indentation and remove blanks
Browse files Browse the repository at this point in the history
  • Loading branch information
zak39 committed Oct 15, 2024
1 parent bbcfa5d commit 0fd548b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

<!--
@copyright Copyright (c) 2017 Arawa

Expand Down
5 changes: 3 additions & 2 deletions src/services/spaceService.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { PREFIX_MANAGER, PREFIX_USER } from '../constants.js'
import { generateUrl } from '@nextcloud/router'
import BadCreateError from '../Errors/BadCreateError.js'
import showNotificationError from './Notifications/NotificationError.js'
import AddGroupToGroupfolderError from '../Errors/Groupfolders/AddGroupToGroupfolderError.js'

/**
* @param {string} spaceName it's a name for the space to create
Expand Down Expand Up @@ -110,8 +111,8 @@ export function isSpaceUsers(group) {
*/
export function addGroupToWorkspace(spaceId, gid) {
return axios.post(generateUrl(`/apps/workspace/spaces/${spaceId}/group-attach`), {
gid
})
gid,
})
.then(resp => {
return resp.data
})
Expand Down

0 comments on commit 0fd548b

Please sign in to comment.