Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a custom handler hooked into composite c1 start up cycle. The C# code is working fine but I need to access the user info who is the approver for the current page.

I tried to use IUser interface but how can I get approver permission user for the current page.

Thanks in advance.

share|improve this question

1 Answer

up vote 2 down vote accepted

Not sure if you are asking how to get whom approved a page or to get the current user permissions for a given page. C1 does not keep track on whom approved a page. To get this feature you need to look into the versioning package. Getting the current user permissions for a given page can be done very easy!

If you are running the latest 3.2 RC you can use the following code to get permissions for the current user and a given page:

IPage currentPage; /* Initialize with the current page */ 
var permissions = 
   PermissionsFacade.GetPermissionsForCurrentUser(currentPage.GetDataEntityToken());
share|improve this answer
Thanks Martin for your response. – user1232020 Apr 2 '12 at 0:41
Please accept the answer if it it was the right one for you :) – Martin Ingvar Kofoed Jensen Apr 2 '12 at 11:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.