Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eduGAIN Access Check - Account manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
edugain
eduGAIN Access Check - Account manager
Commits
cd5d3dba
Commit
cd5d3dba
authored
7 years ago
by
Guillaume ROUSSE
Browse files
Options
Downloads
Patches
Plain Diff
use same configuration directives as the registry
parent
521e76cf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conf/manager.conf.in
+1
-1
1 addition, 1 deletion
conf/manager.conf.in
lib/AccountManager/App.pm
+5
-5
5 additions, 5 deletions
lib/AccountManager/App.pm
with
6 additions
and
6 deletions
conf/manager.conf.in
+
1
−
1
View file @
cd5d3dba
...
...
@@ -27,7 +27,7 @@ level = info
type = mysql
host = localhost
name = idp_account_manager
user = idpadmin
user
name
= idpadmin
password = secret
[idp]
...
...
This diff is collapsed.
Click to expand it.
lib/AccountManager/App.pm
+
5
−
5
View file @
cd5d3dba
...
...
@@ -54,11 +54,11 @@ sub new {
$self
->
{
logger
}
=
Log::
Any
->
get_logger
();
AccountManager::
DB
->
register_db
(
driver
=>
$self
->
{
configuration
}
->
{
database
}
->
{
type
},
database
=>
$self
->
{
configuration
}
->
{
database
}
->
{
name
},
host
=>
$self
->
{
configuration
}
->
{
database
}
->
{
host
},
password
=>
$self
->
{
configuration
}
->
{
database
}
->
{
password
},
username
=>
$self
->
{
configuration
}
->
{
database
}
->
{
user
}
driver
=>
$self
->
{
configuration
}
->
{
database
}
->
{
type
},
database
=>
$self
->
{
configuration
}
->
{
database
}
->
{
name
},
host
=>
$self
->
{
configuration
}
->
{
database
}
->
{
host
},
username
=>
$self
->
{
configuration
}
->
{
database
}
->
{
username
},
password
=>
$self
->
{
configuration
}
->
{
database
}
->
{
password
},
);
$self
->
{
db
}
=
AccountManager::
DB
->
new
();
...
...
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