api: assignment overrides is not really beta

Change-Id: Iae3daaf9902e2da6b09eecf0f64a42276b8fa5a4
Reviewed-on: https://gerrit.instructure.com/141641
Tested-by: Jenkins
Reviewed-by: Derek Bender <djbender@instructure.com>
Product-Review: Simon Williams <simon@instructure.com>
QA-Review: Simon Williams <simon@instructure.com>
This commit is contained in:
Simon Williams 2018-02-22 12:22:39 -07:00
parent 3b79d2c15a
commit 7f81aecde2
2 changed files with 1 additions and 15 deletions

View File

@ -22,7 +22,7 @@
# @model AssignmentOverride
# {
# "id": "AssignmentOverride",
# "description": "NOTE: The Assignment Override feature is in beta! This API is not finalized and there could be breaking changes before its final release.",
# "description": "",
# "properties": {
# "id": {
# "description": "the ID of the assignment override",
@ -95,7 +95,6 @@ class AssignmentOverridesController < ApplicationController
include Api::V1::AssignmentOverride
# @API List assignment overrides
# @beta
#
# Returns the paginated list of overrides for this assignment that target
# sections/groups/students visible to the current user.
@ -107,7 +106,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Get a single assignment override
# @beta
#
# Returns details of the the override with the given id.
#
@ -117,7 +115,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Redirect to the assignment override for a group
# @beta
#
# Responds with a redirect to the override for the given group, if any
# (404 otherwise).
@ -131,7 +128,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Redirect to the assignment override for a section
# @beta
#
# Responds with a redirect to the override for the given section, if any
# (404 otherwise).
@ -145,7 +141,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Create an assignment override
# @beta
#
# @argument assignment_override[student_ids][] [Integer] The IDs of
# the override's target students. If present, the IDs must each identify a
@ -220,7 +215,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Update an assignment override
# @beta
#
# @argument assignment_override[student_ids][] [Integer] The IDs of the
# override's target students. If present, the IDs must each identify a
@ -277,7 +271,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Delete an assignment override
# @beta
#
# Deletes an override and returns its former details.
#
@ -298,7 +291,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Batch retrieve overrides in a course
# @beta
#
# Returns a list of specified overrides in this course, providing
# they target sections/groups/students visible to the current user.
@ -347,7 +339,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Batch create overrides in a course
# @beta
#
# Creates the specified overrides for each assignment. Handles creation in a
# transaction, so all records are created or none are.
@ -383,7 +374,6 @@ class AssignmentOverridesController < ApplicationController
end
# @API Batch update overrides in a course
# @beta
#
# Updates a list of specified overrides for each assignment. Handles overrides
# in a transaction, so either all updates are applied or none.

View File

@ -900,7 +900,6 @@ class AssignmentsApiController < ApplicationController
#
# @argument assignment[assignment_overrides][] [AssignmentOverride]
# List of overrides for the assignment.
# NOTE: The assignment overrides feature is in beta.
#
# @argument assignment[only_visible_to_overrides] [Boolean]
# Whether this assignment is only visible to overrides
@ -1054,7 +1053,6 @@ class AssignmentsApiController < ApplicationController
#
# @argument assignment[assignment_overrides][] [AssignmentOverride]
# List of overrides for the assignment.
# NOTE: The assignment overrides feature is in beta.
#
# @argument assignment[only_visible_to_overrides] [Boolean]
# Whether this assignment is only visible to overrides
@ -1074,8 +1072,6 @@ class AssignmentsApiController < ApplicationController
# present, existing overrides are updated or deleted (and new ones created,
# as necessary) to match the provided list.
#
# NOTE: The assignment overrides feature is in beta.
#
# @argument assignment[omit_from_final_grade] [Boolean]
# Whether this assignment is counted towards a student's final grade.
#