Ticket Q141870
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

ConditionalAppearance - Make it possible to manage Action availability against the currently logged user

Action based Permission

created 16 years ago

Hi,
Is it possible to Grant Allow or Deny for actions those provided by View Controllers or ActionAttribute ?
We are adding many actions for our objects, and we need to set permissions for all actions.
You prefer a way in issue CQ47846 : how can i set permissions for ChangePasswordController's ChangePasswordByUser action?
But do i need to create a MyOwnPermission class for all of my actions ?
Or there is a more generic an accaptable solution?
Thanks,
Akın GÜNEŞ
İletişim Yazılım

Show previous comments (5)
Dennis Garavsky (DevExpress) 16 years ago

    Hello Akin,
    >>
    1-How can i get all actions ID and name to fill the property editors in the ActionPermission Detail View ? So my user can Selct it from a comboBox.
    <<
    You can access the application model via code and iterate through all the subnodes under the ActionsDesign node to find IDs of actions.
    >>
    2-Is there any place that i can put my Code which check Access Permission. Like
    <<
    Yes, you can implement a custom ViewContoller that will iterate through all the frame's controllers and their actions and handle its Executing event. In the event handler you can check your permission using the [IsGranted](http:/ /www.devexpress.com/Help/?document=expressapp/customdocument2981.htm) method. An example code may look like this:

    C#
    ... foreach(Controller controller in Frame.Controllers) { foreach(ActionBase action in controller.Actions) { action.Executing + = action_CheckActionPertmission } } ... action_CheckActionPertmission(...) { SecuritySystem.IsGranted(new ActionPermission(action.Id)); } ...

    Please let us know in case of any difficulty.
    Thanks,
    Dennis
    P.S.
    The Support Center concept does not allow multiple problems within a thread as this makes it difficult to properly track such items. Please open a new issue for each question you want to ask.

    İY İY
    İletişim Yazilim 16 years ago

      Hi Dennis,
      Thank you for your help.
      I think your suggestions will solve my issue.
      I will implement these features, and if i have any difficulty, i know that you are always here for us.
      Thanks,
      Akın GÜNEŞ
      İletişim Yazılım
      PS: I am respect your support center concept. However i thought my questions are related with this topic. I will be more carefully my next posts.

      Dennis Garavsky (DevExpress) 16 years ago

        OK, Akin, thanks for the feedback. Do not hesitate to contact us in case of any problem.
        Thanks,
        Dennis

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.