Videos Permissions in Sitefinity 4.1
Hi,
I have been building a custom template to display the videos thumbnail list along with few more additional fields. When moving next to the permissions part, i am little stuck ...
Can you please let me know where the videos' permissions are stored in the backend tables (table name would be helpful)?
Hello Rameshkumar,
I am not sure why you need the database tables, since there is API and UI. Anyway,
You can query
[sf_libraries_sf_permissions]
Then query [sf_permissions] by the result returned from id2 coulmn of [sf_libraries_sf_permissions]
from [sf_permissions] check the value of grnt - it should be 1 and for deny it should be 0
In the line returned from [sf_permissions] there is a column [principal_id] which value you can use to query [sf_roles] by Id.
All the best,
Ivan Dimitrov
the Telerik team