Skip to content

Commit

Permalink
Merge pull request #909 from arawa/refactor/improve-select-users-and-…
Browse files Browse the repository at this point in the history
…csv-import-users

Implement user import from CSV in Workspace
  • Loading branch information
zak39 authored Dec 5, 2024
2 parents e790bf6 + b52d373 commit edcc63d
Show file tree
Hide file tree
Showing 67 changed files with 10,733 additions and 21,858 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
uses: skjnldsv/[email protected]
id: versions
with:
fallbackNpm: '^7'
fallbackNode: '^14'
fallbackNpm: '^9'
fallbackNode: '^20'

- name: Use Node.js ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
uses: skjnldsv/[email protected]
id: versions
with:
fallbackNpm: '^7'
fallbackNode: '^14'
fallbackNpm: '^9'
fallbackNode: '^20'

- name: Use Node.js ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v2
Expand Down
20 changes: 10 additions & 10 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,16 @@
'url' => '/api/group/addUser/{spaceId}',
'verb' => 'POST',
],
// [
// 'name' => 'fileCSV#import',
// 'url' => '/file/csv/import-data',
// 'verb' => 'POST',
// ],
// [
// 'name' => 'fileCSV#getFromFiles',
// 'url' => '/file/csv/import-from-files',
// 'verb' => 'POST',
// ],
[
'name' => 'fileCSV#import',
'url' => '/space/{spaceId}/import-users/local',
'verb' => 'POST',
],
[
'name' => 'fileCSV#getFromFiles',
'url' => '/space/{spaceId}/import-users/files',
'verb' => 'POST',
],
[
'name' => 'space#updateColorCode',
'url' => '/workspaces/{spaceId}/color',
Expand Down
Loading

0 comments on commit edcc63d

Please sign in to comment.