-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
38 changed files
with
81 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/server/apps/{id}/settings', | ||
update: 'PUT /api/v2/server/apps/{id}/settings' | ||
findOne: 'GET api/v2/server/apps/{id}/settings', | ||
update: 'PUT api/v2/server/apps/{id}/settings' | ||
}, { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/admin/server/cluster' | ||
findOne: 'GET api/v2/admin/server/cluster' | ||
}, { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/server/counters' | ||
findOne: 'GET api/v2/server/counters' | ||
}, { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findAll: 'GET /api/v2/admin/groups', | ||
findAll: 'GET api/v2/admin/groups', | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import Job from 'models/job'; | ||
|
||
export default Job.extend({ | ||
findAll: 'GET /api/v2/admin/jobs' | ||
findAll: 'GET api/v2/admin/jobs' | ||
}, { | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import Job from 'models/job'; | ||
|
||
export default Job.extend({ | ||
findOne: 'GET /api/v2/jobs/{id}', | ||
destroy: 'DELETE /api/v2/jobs/{id}' | ||
findOne: 'GET api/v2/jobs/{id}', | ||
destroy: 'DELETE api/v2/jobs/{id}' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
update: 'GET /api/v2/jobs/{id}/{action}' | ||
update: 'GET api/v2/jobs/{id}/{action}' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/admin/server/nextflow/config', | ||
create: 'POST /api/v2/admin/server/nextflow/config/update', | ||
update: 'POST /api/v2/admin/server/nextflow/config/update' | ||
findOne: 'GET api/v2/admin/server/nextflow/config', | ||
create: 'POST api/v2/admin/server/nextflow/config/update', | ||
update: 'POST api/v2/admin/server/nextflow/config/update' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/server' | ||
findOne: 'GET api/v2/server' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findOne: 'GET /api/v2/admin/server/settings', | ||
create: 'POST /api/v2/admin/server/settings/update', | ||
update: 'POST /api/v2/admin/server/settings/update' | ||
findOne: 'GET api/v2/admin/server/settings', | ||
create: 'POST api/v2/admin/server/settings/update', | ||
update: 'POST api/v2/admin/server/settings/update' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
findAll: 'GET /api/v2/admin/server/templates', | ||
findOne: 'GET /api/v2/admin/server/templates/{key}', | ||
destroy: 'POST /api/v2/admin/server/templates/delete', | ||
create: 'POST /api/v2/admin/server/templates/{key}', | ||
update: 'POST /api/v2/admin/server/templates/{key}' | ||
findAll: 'GET api/v2/admin/server/templates', | ||
findOne: 'GET api/v2/admin/server/templates/{key}', | ||
destroy: 'POST api/v2/admin/server/templates/delete', | ||
create: 'POST api/v2/admin/server/templates/{key}', | ||
update: 'POST api/v2/admin/server/templates/{key}' | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import Model from 'can-connect/can/model/model'; | ||
|
||
export default Model.extend({ | ||
create: 'POST /api/v2/users/{user}/api-token?expiration={expiration}', | ||
destroy: 'DELETE /api/v2/users/{user}/api-token', | ||
create: 'POST api/v2/users/{user}/api-token?expiration={expiration}', | ||
destroy: 'DELETE api/v2/users/{user}/api-token', | ||
}, {}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.