In #106, we added content_access module to prevent access to sponsor detail page for unauthorized users. However, this also prevented them from viewing sponsors on /sponsors page. This is because content_access doesn't provide granularity to handle access on a view mode basis (or a way to handle it only for the node page).
I've removed the content_access module and inmplemented the hook_node_access() to handle this.
102
Update:
content_access
module to prevent access to sponsor detail page for unauthorized users. However, this also prevented them from viewing sponsors on/sponsors
page. This is becausecontent_access
doesn't provide granularity to handle access on a view mode basis (or a way to handle it only for the node page).content_access
module and inmplemented thehook_node_access()
to handle this./sponsors
view/sponsors
viewCC: @Prashant114606