Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
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
Project
Merge requests
!191
Docs: Return correct Quota return type (coscine/issues#2008)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Docs: Return correct Quota return type (coscine/issues#2008)
Issue/2008-quotaManagement
into
dev
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Benedikt Heinrichs
requested to merge
Issue/2008-quotaManagement
into
dev
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
d147d12b
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Project/Controllers/ProjectController.cs
+
1
−
1
Options
@@ -170,7 +170,7 @@ namespace Coscine.Api.Project.Controllers
/// <param name="projectId">Id of the project.</param>
/// <returns>List of project quotas</returns>
[
HttpGet
(
"[controller]/{projectId}/quota/-/all"
)]
public
ActionResult
<
IEnumerable
<
ProjectQuota
>>
Quotas
(
string
projectId
)
public
ActionResult
<
IEnumerable
<
ProjectQuota
ReturnObject
>>
Quotas
(
string
projectId
)
{
var
user
=
_authenticator
.
GetUser
();
Loading