Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Database
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
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
libraries
Database
Commits
c199c67b
Commit
c199c67b
authored
Apr 1, 2021
by
Marcel Nellesen
Browse files
Options
Downloads
Plain Diff
Merge branch 'Hotfix/1433-defaultQuota' into 'master'
Hotfix/1433 default quota See merge request
!129
parents
b48b615f
3b6854fc
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!129
Hotfix/1433 default quota
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
src/Database/Models/ProjectModel.cs
+1
-1
1 addition, 1 deletion
src/Database/Models/ProjectModel.cs
with
2 additions
and
2 deletions
README.md
+
1
−
1
View file @
c199c67b
This diff is collapsed.
Click to expand it.
src/Database/Models/ProjectModel.cs
+
1
−
1
View file @
c199c67b
...
...
@@ -259,7 +259,7 @@ namespace Coscine.Database.Models
foreach
(
var
resourceType
in
resourceTypeModel
.
GetAll
())
{
var
quota
=
25
;
if
(
resourceType
.
DisplayName
.
Equals
(
"rds"
)
&&
!
IsRWTHMember
)
if
(
(
resourceType
.
DisplayName
.
Equals
(
"rds"
)
&&
!
IsRWTHMember
)
||
resourceType
.
DisplayName
.
Equals
(
"rdss3"
))
{
quota
=
0
;
}
...
...
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