Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
5ff4cb4f
Commit
5ff4cb4f
authored
Sep 14, 2018
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
product/SlapOS: Fix up getTransactionalVariable
parent
77f2f44f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
master/product/SlapOS/SlapOSShadowAuthenticationPlugin.py
master/product/SlapOS/SlapOSShadowAuthenticationPlugin.py
+3
-2
No files found.
master/product/SlapOS/SlapOSShadowAuthenticationPlugin.py
View file @
5ff4cb4f
...
@@ -253,9 +253,10 @@ class SlapOSShadowAuthenticationPlugin(BasePlugin):
...
@@ -253,9 +253,10 @@ class SlapOSShadowAuthenticationPlugin(BasePlugin):
]
]
# END OF CUSTOM CODE
# END OF CUSTOM CODE
if
getTransactionalVariable
()[
"transactional_user"
]
is
not
None
:
tv
=
getTransactionalVariable
()
person
=
getTransactionalVariable
()[
"transactional_user"
]
person
=
tv
.
get
(
"transactional_user"
,
None
)
if
person
is
not
None
:
erp5_login
=
person
.
objectValues
(
"ERP5 Login"
)[
0
]
erp5_login
=
person
.
objectValues
(
"ERP5 Login"
)[
0
]
if
(
id
is
not
None
and
person
.
getUserId
()
==
id
[
0
]):
if
(
id
is
not
None
and
person
.
getUserId
()
==
id
[
0
]):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment