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
!84
Product/178-toggleSharePoint
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Product/178-toggleSharePoint
Product/178-toggleSharePoint
into
Sprint/2020-06
Overview
0
Commits
3
Pipelines
2
Changes
1
Merged
Marcel Nellesen
requested to merge
Product/178-toggleSharePoint
into
Sprint/2020-06
5 years ago
Overview
0
Commits
3
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
Sprint/2020-06
version 1
db4eb933
5 years ago
Sprint/2020-06 (base)
and
latest version
latest version
42915fe9
3 commits,
5 years ago
version 1
db4eb933
2 commits,
5 years ago
1 file
+
7
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Project/Controllers/ProjectController.cs
+
7
−
0
Options
@@ -25,6 +25,7 @@ namespace Coscine.Api.Project.Controllers
private
readonly
ProjectModel
_projectModel
;
private
readonly
IConfiguration
_configuration
;
private
readonly
Emitter
_emitter
;
private
readonly
ActivatedFeaturesModel
_activatedFeaturesModel
;
private
readonly
ProjectRoleModel
_projectRoleModel
;
private
readonly
CoscineLogger
_coscineLogger
;
private
readonly
AnalyticsLogObject
_analyticsLogObject
;
@@ -35,6 +36,7 @@ namespace Coscine.Api.Project.Controllers
_configuration
=
Program
.
Configuration
;
_projectModel
=
new
ProjectModel
();
_emitter
=
new
Emitter
(
_configuration
);
_activatedFeaturesModel
=
new
ActivatedFeaturesModel
();
_projectRoleModel
=
new
ProjectRoleModel
();
_coscineLogger
=
new
CoscineLogger
(
logger
);
_analyticsLogObject
=
new
AnalyticsLogObject
();
@@ -207,6 +209,11 @@ namespace Coscine.Api.Project.Controllers
}
}
if
(
isHard
)
{
_activatedFeaturesModel
.
DeactivateAllFeatures
(
project
);
}
if
(
isHard
)
{
if
(
propegateAction
)
Loading