${_('View whitelist')}

View white list defines a set of views that can be accessed using auth token without the need to login. Adding ?auth_token = SECRET_TOKEN to the url authenticates this request as if it came from the the logged in user who owns this authentication token. E.g. adding `RepoFilesView.repo_file_raw` allows to access a raw diff using such url: http[s]://server.com/{repo_name}/raw/{commit_id}/{file_path}?auth_token=SECRET_TOKEN White list can be defined inside `${c.whitelist_file}` under `${c.whitelist_key}=` setting Currently the following views are set:

% for entry in c.whitelist_views:
${entry}
% endfor

${_('List of views available for usage in whitelist access')}

% for route_name, view_fqn, view_url, active in c.view_data: % endfor
Active View FQN URL pattern
% if active: ${h.bool2icon(active)} % endif ${view_fqn} ${view_url}