Skip to content

Commit

Permalink
update 14 to fix issue #423
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobuzzi committed Jul 9, 2021
1 parent 3a4a2e2 commit e441ae0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
applications
getExistingOrbeonApplicationOrCreateNewNamed: applicationName
| application |

(applications includesKey: applicationName) ifTrue: [^applications at: applicationName].

application := OrbeonApplication newNamed: applicationName.

self registerApplication: application
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
},
"instance" : {
"createSystemDefaultObjects" : "brunobb 06/30/2021 14:38",
"getExistingOrbeonApplicationOrCreateNewNamed:" : "brunobb 07/06/2021 13:58",
"initialize" : "brunobb 06/30/2021 14:38",
"initializeCurrentSystem" : "brunobb 06/30/2021 14:38",
"registerApplication:" : "brunobb 06/30/2021 14:38",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ other
newNamed: aString password: password
| user centralUser |

centralUser := ApplicationUser getExistingOrNewUserNamed: aString.
centralUser := self defaultApplicationUserClass getExistingOrNewUserNamed: aString.
centralUser password: password.

user := self new initialize.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ migrateFrom: oldUser instVarMap: aMap

super migrateFrom: oldUser instVarMap: aMap.

centralUser := ApplicationUser getExistingOrNewUserNamed: name.
centralUser := self defaultApplicationUserClass getExistingOrNewUserNamed: name.
centralUser password: password.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"migrateToApplicationUser" : "BrunoBB 12/20/2015 11:44",
"named:" : "BrunoBB 12/20/2015 11:23",
"newManagerNamed:password:" : "brunobb 03/25/2020 14:46",
"newNamed:password:" : "BrunoBB 02/04/2016 10:11",
"newNamed:password:" : "brunobb 07/06/2021 12:57",
"transformCache" : "BrunoBB 12/20/2015 11:23" },
"instance" : {
"addRol:" : "BrunoBB 12/20/2015 11:23",
Expand All @@ -34,7 +34,7 @@
"managerRolName" : "BrunoBB 12/20/2015 11:23",
"managerRole" : "BrunoBB 12/20/2015 11:23",
"managerRole:" : "BrunoBB 12/20/2015 11:23",
"migrateFrom:instVarMap:" : "BrunoBB 12/20/2015 11:35",
"migrateFrom:instVarMap:" : "brunobb 07/06/2021 12:57",
"name" : "BrunoBB 12/20/2015 11:46",
"name:" : "BrunoBB 12/20/2015 11:46",
"password" : "BrunoBB 12/20/2015 11:47",
Expand Down
2 changes: 1 addition & 1 deletion repository/Orbeon.package/monticello.meta/version

Large diffs are not rendered by default.

0 comments on commit e441ae0

Please sign in to comment.