Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
c45898f3
Unverified
Commit
c45898f3
authored
6 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
MAINT: removed hard coded admin email
parent
a9302c49
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
caosdb-webui
+1
-1
1 addition, 1 deletion
caosdb-webui
src/main/java/caosdb/server/CaosDBServer.java
+1
-6
1 addition, 6 deletions
src/main/java/caosdb/server/CaosDBServer.java
with
2 additions
and
7 deletions
caosdb-webui
@
7df3c8cd
Subproject commit
2a6d74d7cb6bed89b2e7a0e5801ff4c040a3ebf8
Subproject commit
7df3c8cdf945e5b98df8b04a084fabbdaf058946
This diff is collapsed.
Click to expand it.
src/main/java/caosdb/server/CaosDBServer.java
+
1
−
6
View file @
c45898f3
...
@@ -277,17 +277,12 @@ public class CaosDBServer extends Application {
...
@@ -277,17 +277,12 @@ public class CaosDBServer extends Application {
// Create an application (this class).
// Create an application (this class).
final
Application
application
=
new
CaosDBServer
();
final
Application
application
=
new
CaosDBServer
();
application
.
getStatusService
().
setContactEmail
(
"timm.fitschen@ds.mpg.de"
);
application
.
getStatusService
().
setContactEmail
(
getServerProperty
(
ServerProperties
.
KEY_ADMIN_EMAIL
)
);
application
application
.
getStatusService
()
.
getStatusService
()
.
setHomeRef
(
new
Reference
(
getServerProperty
(
ServerProperties
.
KEY_CONTEXT_ROOT
)
+
"/"
));
.
setHomeRef
(
new
Reference
(
getServerProperty
(
ServerProperties
.
KEY_CONTEXT_ROOT
)
+
"/"
));
// Attach the application to the component with a defined contextRoot.
// Attach the application to the component with a defined contextRoot.
application
.
getStatusService
().
setContactEmail
(
"timm.fitschen@ds.mpg.de"
);
application
.
getStatusService
()
.
setHomeRef
(
new
Reference
(
getServerProperty
(
ServerProperties
.
KEY_CONTEXT_ROOT
)
+
"/"
));
component
component
.
getDefaultHost
()
.
getDefaultHost
()
.
attach
(
getServerProperty
(
ServerProperties
.
KEY_CONTEXT_ROOT
),
application
);
.
attach
(
getServerProperty
(
ServerProperties
.
KEY_CONTEXT_ROOT
),
application
);
...
...
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