Default screen when access to no boards

Currently, we have 2 boards deployed using shinyproxy. There could be some situations when we would like to stop the access of people to both the boards, is ti possible to display a friendly message in the default login screen when they do not have access to any of the boards.

Thanks,
Ramakant

Hi

You can change the index.html template to show a message to the user in case they have no access.

<div th:if="${apps.length == 0}">
    <h1>You don't have access!</h1>
    <!-- Customize as you wish -->
</div>

See this link for changing the templates: https://github.com/openanalytics/shinyproxy-config-examples/tree/master/04-custom-html-template

1 Like