-
Notifications
You must be signed in to change notification settings - Fork 592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Markdown stories #866
Markdown stories #866
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
such a minor comment, otherwise LGTM
timesketch/views/spa.py
Outdated
@login_required | ||
# pylint: disable=unused-argument | ||
def redirect_view(sketch_id, view_id): | ||
"""Generates the template. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this feels a bit weird....
the function is called redirect_view
but the docstring says generate the template
and then all it does is return a redirect
call.. so the function name and content seem to match but the docstring sounds a bit weird
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Implements Markdown support for the story feature in the new frontend code. This replaces the old HTML based stories and add the benefit of being data driven. This will enable API support for creating stories.
Part of: #867