-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
quality: move stage into feedback folder and load
Added feedback folder loading into application. No module needed in the model. Using a module for the feedback api folder. Co-authored-by: ugonj <[email protected]> Co-authored-by: wakedreamer <[email protected]> Co-authored-by: ublefo <[email protected]>
- Loading branch information
1 parent
c74a676
commit 70a7ddb
Showing
5 changed files
with
81 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
require 'grape' | ||
|
||
module FeedbackApi | ||
class StageApi < Grape::API | ||
|
||
desc 'Feedback is provided in stages. This endpoint allows you to create a new stage for feedback on tasks for a given task definition.' | ||
params do | ||
requires :task_definition_id, type: Integer, desc: 'The task definition to which the stage belongs' | ||
requires :title, type: String, desc: 'The title of the new stage' | ||
requires :order, type: Integer, desc: 'The order to determine the order in which to display stages' | ||
end | ||
post '/stages' do | ||
task_definition = TaskDefinition.find(params[:task_definition_id]) | ||
|
||
unless authorise? current_user, task_definition.unit, :update | ||
error!({ error: 'Not authorised to create a stage for this unit' }, 403) | ||
end | ||
|
||
stage_parameters = ActionController::Parameters.new(params) | ||
.permit(:title, :order) | ||
|
||
stage_parameters[:task_definition] = task_definition | ||
|
||
result = Stage.create!(stage_parameters) | ||
|
||
present result, with: Entities::StageEntity | ||
end | ||
|
||
desc 'This endpoint allows you to get all the stages for a given task definition.' | ||
params do | ||
requires :task_definition_id, type: Integer, desc: 'The task definition to which the stage belongs' | ||
end | ||
get '/stages' do | ||
task_definition = TaskDefinition.find(params[:task_definition_id]) | ||
|
||
unless authorise? current_user, task_definition.unit, :provide_feedback | ||
error!({ error: 'Not authorised to get feedback stages for this unit' }, 403) | ||
end | ||
|
||
present task_definition.stages, with: Entities::StageEntity | ||
end | ||
|
||
desc 'This endpoint allows you to update the name and order of a stage.' | ||
params do | ||
optional :title, type: String, desc: 'The new title for the stage' | ||
optional :order, type: Integer, desc: 'The order value for the stage' | ||
end | ||
put '/stages/:id' do | ||
# Get the stage from the task definition | ||
stage = Stage.find(params[:id]) | ||
|
||
unless authorise? current_user, stage.unit, :update | ||
error!({ error: 'Not authorised to update feedback stages for this unit' }, 403) | ||
end | ||
|
||
stage_params = ActionController::Parameters.new(params) | ||
.permit(:title, :order) | ||
|
||
stage.update!(stage_params) | ||
|
||
present stage, with: Entities::StageEntity | ||
end | ||
|
||
desc 'This endpoint allows you to delete a stage.' | ||
delete '/stages/:id' do | ||
# Get the stage from the task definition | ||
stage = Stage.find(params[:id]) | ||
|
||
unless authorise? current_user, stage.unit, :update | ||
error!({ error: 'Not authorised to delete feedback stages for this unit' }, 403) | ||
end | ||
|
||
stage.destroy! | ||
end | ||
|
||
end | ||
end |
This file was deleted.
Oops, something went wrong.
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