Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor/improve select users and csv import users test/zak39 #1095

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
Loading