From a754248d1534fa7c469285cd26ad8e0c0772600c Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Feb 02 2016 10:47:38 +0000 Subject: fix for #653 add ssh_info to blacklist in default config this is to stop a user from creating a project ssh_info that conflicts with the pagure page that lists the ssh info for the pagure instance Resolves: #653 --- diff --git a/pagure/default_config.py b/pagure/default_config.py index 0ea6c6e..39faad0 100644 --- a/pagure/default_config.py +++ b/pagure/default_config.py @@ -182,7 +182,7 @@ APPLICATION_ROOT = '/' # List of blacklisted project names BLACKLISTED_PROJECTS = [ 'static', 'pv', 'releases', 'new', 'api', 'settings', - 'logout', 'login', 'users', 'groups', 'projects'] + 'logout', 'login', 'users', 'groups', 'projects', 'ssh_info'] ACLS = { 'issue_create': 'Create a new ticket against this project',