File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
src/platform-domain/main/classes Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -73,4 +73,26 @@ public with sharing class UserDomain {
7373 hasAccessToSkjermet ||
7474 hasAccessToStrengtFortrolig ;
7575 }
76+
77+ /** Temporary due to deployment issue */
78+ public Boolean accessToThemesFromAdGroups ;
79+ public UserDomain (Id recordId , String navId ) {
80+ this .recordId = recordId ;
81+ this .navId = navId ;
82+ this .accessToThemesFromAdGroups = false ; // Default value
83+ }
84+ public UserDomain (
85+ Id recordId ,
86+ String navId ,
87+ Boolean accessToThemesFromAdGroups
88+ ) {
89+ this .recordId = recordId ;
90+ this .navId = navId ;
91+ this .accessToThemesFromAdGroups = accessToThemesFromAdGroups ;
92+ }
93+
94+ public void checkAccessToFortroligAndSkjermetByAdGroups (
95+ List <String > usersAdGroupIds
96+ ) {
97+ }
7698}
You can’t perform that action at this time.
0 commit comments