Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
c0bce38c
Commit
c0bce38c
authored
Mar 07, 2019
by
Guilhem Saurel
Browse files
fix RedirectView pattern
parent
2da2a4f7
Pipeline
#3403
passed with stages
in 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/urls.py
View file @
c0bce38c
...
...
@@ -40,5 +40,5 @@ urlpatterns = [
path
(
'graph'
,
TemplateView
.
as_view
(
template_name
=
'rainboard/graph.html'
),
name
=
'graph'
),
path
(
'api/'
,
include
(
router
.
urls
)),
path
(
'api-auth/'
,
include
(
'rest_framework.urls'
,
namespace
=
'rest_framework'
)),
path
(
'<str:slug>'
,
RedirectView
.
as_view
(
pattern_name
=
'project'
),
name
=
'project_redirect'
),
path
(
'<str:slug>'
,
RedirectView
.
as_view
(
pattern_name
=
'
rainboard:
project'
),
name
=
'project_redirect'
),
]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment