Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ActivatedFeatures
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
apis
ActivatedFeatures
Commits
db025752
Commit
db025752
authored
Oct 29, 2020
by
Marcel Nellesen
Browse files
Options
Downloads
Patches
Plain Diff
Small corrections (coscine/issues#1069)
parent
2a416ca0
No related branches found
No related tags found
1 merge request
!8
Topic/1069 activated feature doku
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ActivatedFeatures/Controllers/ActivatedFeaturesController.cs
+5
-5
5 additions, 5 deletions
...ivatedFeatures/Controllers/ActivatedFeaturesController.cs
with
5 additions
and
5 deletions
src/ActivatedFeatures/Controllers/ActivatedFeaturesController.cs
+
5
−
5
View file @
db025752
...
...
@@ -46,7 +46,7 @@ namespace Coscine.Api.ActivatedFeatures.Controllers
/// <summary>
/// Returns features of the project.
/// </summary>
/// <param name="projectId">Project fr
om
which the features are
taken
</param>
/// <param name="projectId">Project f
o
r which the features are
returned
</param>
/// <returns>Features or StatusCode 401</returns>
[
HttpGet
(
"[controller]/{projectId}"
)]
public
ActionResult
<
List
<
FeatureObject
>>
GetFeatures
(
string
projectId
)
...
...
@@ -68,7 +68,7 @@ namespace Coscine.Api.ActivatedFeatures.Controllers
/// <summary>
/// Returns activated features of the project.
/// </summary>
/// <param name="projectId">Project fr
om
which the activated feature
is taken
</param>
/// <param name="projectId">Project f
o
r which the activated feature
s are returned
</param>
/// <returns>ActiveFeatures or StatusCode 401</returns>
[
HttpGet
(
"[controller]/{projectId}/activeFeatures"
)]
public
ActionResult
<
List
<
FeatureObject
>>
GetActiveFeatures
(
string
projectId
)
...
...
@@ -89,7 +89,7 @@ namespace Coscine.Api.ActivatedFeatures.Controllers
/// <summary>
/// Returns the inactive features of the project.
/// </summary>
/// <param name="projectId">Project fr
om
which the inactivate features are
taken
</param>
/// <param name="projectId">Project f
o
r which the inactivate features are
returned
</param>
/// <returns>InactiveFeatures or StatusCode 401</returns>
[
HttpGet
(
"[controller]/{projectId}/inactiveFeatures"
)]
public
ActionResult
<
List
<
FeatureObject
>>
GetInactiveFeatures
(
string
projectId
)
...
...
@@ -110,7 +110,7 @@ namespace Coscine.Api.ActivatedFeatures.Controllers
/// <summary>
/// Activates the feature of the project.
/// </summary>
/// <param name="projectId">Project fr
om
which the feature is activated</param>
/// <param name="projectId">Project f
o
r which the feature is activated</param>
/// <param name="featureId">Feature</param>
/// <returns>StatusCode 204 or 401</returns>
[
HttpGet
(
"[controller]/{projectId}/activateFeature/{featureId}"
)]
...
...
@@ -134,7 +134,7 @@ namespace Coscine.Api.ActivatedFeatures.Controllers
/// <summary>
/// Deactives the feature of the project.
/// </summary>
/// <param name="projectId">Project fr
om
which the feature is deactivated</param>
/// <param name="projectId">Project f
o
r which the feature is deactivated</param>
/// <param name="featureId">Feature</param>
/// <returns>StatusCode 204 or 401</returns>
[
HttpGet
(
"[controller]/{projectId}/deactivateFeature/{featureId}"
)]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment