Is it possible to have queries in a custom grid that check for the current logged in user?
e.g. (Owner = LOGGED_IN_USER)
If not, how to go about building personalized dashboards that the team can share?
Thanks,
Andy
There is a special {user} token that can be used to accomplish what you want.
(Owner = {user})
More information on writing advanced queries can be found in the rally help: http://help.rallydev.com/use-grid-app-queries
Related
I'm not very used to Apostrophe and currently checking out that CMS.
What I want to do is implementing a user login at the frontend.
I tried using the apostrophe-user module but users that were created using that module are able to login to the backend and I don't want them to be able to do this.
Is it somehow possible to achieve what I want to do?
Thank you very much in advance!
Edit: I'm also using apostrophe-headless
You can use apostrophe-groups to create a sub group of users with specific permissions and then check those permissions in various places (like templates) to show or not show certain admin experiences.
https://apostrophecms.org/docs/tutorials/intermediate/permissions.html
You could further customize the login experience of these users by tapping in to the apostrophe-login, redirecting them to a special part of the website, etc https://apostrophecms.org/docs/modules/apostrophe-login/index.html
I changed the user store to our custom oracle db. so, there are some fields that should be added to user profile when set the user profile of a user. How can I add some new properties to user profile GUI and map those to related fields in um_user table? thanks for your response!
you may want to have a look in the administrative console ( /carbon ) for the claim management.
Locate claims in the claim dialect http://wso2.org/claims, there you can define additional user attributes and their attribute names (field name in the underlying userstore).
good luck
I'm new to wso2 and there are many new concepts to me ... I'm looking for a yes/no answer to the following question:
With wso2is, is it possible to authenticate users using one secondary user store (AD / LDAP) and authorize them using another secondary user store (JDBC, a database with only user and role tables)?
If the answer to the question is "yes", can you please provide me some links to some related examples or documents?
Any suggestions?
Thanks.
Yes, its possible. we can use different user stores.
Please refer
https://docs.wso2.com/display/IS530/Architecture
https://docs.wso2.com/display/IS530/Configuring+Single+Sign-On
Yes!! it is possible. Write your own custom UserStore and overwrite the method getting claims from user store.
Google it and you will find steps to do that.
I am integrating sharepoint in Iphone app.
I want to hide/unhide few UI component on the basis of User role/permission defined in sharepoint.
Please suggest me any straight query to get the role object or any other way to achieve this.
use REST to get groups and go from there: https://msdn.microsoft.com/en-us/library/office/dn531432.aspx
Is there a built-in way to find out whether or not a user has logged in?
Basically I would want to know if a user has logged in.
I mean, I could keep track of the users that are logging via overriding methods in authentication and storing session info.
Any ideas would be appreciated, thanks.
There is no built-in way to do this. If you want to develop a solution for this, then you need to clarify which authentication methods you are looking for: Windows, Forms, Claims ?
See this thread:
https://sharepoint.stackexchange.com/questions/6830/how-to-check-how-many-users-are-currently-logged-in-sharepoint-foundation-2010