Skip to content

Commit

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

Backport: Implement user import from CSV in Workspace
  • Loading branch information
zak39 authored Dec 5, 2024
2 parents e5c745c + 6dc9584 commit d69bebf
Show file tree
Hide file tree
Showing 67 changed files with 3,062 additions and 1,467 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
10 changes: 10 additions & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,16 @@
'url' => '/api/group/addUser/{spaceId}',
'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 d69bebf

Please sign in to comment.