mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-19 06:54:20 +01:00
* Bootstrap v4 (#490) * Upgrading original theme to use Bootstrap v4 and overall improve use of utility classes * Fixing graph issues. Colors per team & cleaner hover * The solves tab now shows relative time instead of absolute time * Redesign admin theme * Updating modals and changing form name from desc to description * Moving CSS config from Pages to Config page * Adding IP address count to statistics * Move control of certain modals (files, flags, tags, hints) to challenges page * Expanding size of config page * Combining statistics and graphs pages * Moving percentage solved to the statistics page instead of the admin challenges page * Rename Keys.key_type to Keys.type (#459) (#478) * Rename keys.key_type to keys.type (#459) * Fixing previous migration to not be worried about key_type v type * Fixing loading of challenge type plugins * Switching from Handlebars to Nunjucks (#491) * Switching from Handlebars to Nunjucks * Allow admins to unlock hints before CTF begins and test that this is not allowed for regular users * Authed only (#492) * Adding authed_only decorator and adding next to url_for * Adding a basic preview to hints (#494) * Hints have a preview now for creating and updating hints. HTML and markdown are still allowed. * Ezq (#495) * Adding ezq as a simple wrapper around bootstrap modals * Use tabs not spaces and remove gray background on inputs * Adding title & draft to Pages. Making page preview open a new tab (#497) * Adding title & draft to Pages. * Making page preview open a new tab instead of render in the existing tab * Draft pages cannot be seen without a preview * Update check (#499) * Add update_check function * Notify user that a CTFd update is available in the admin panel * Adding update_check tests * Ratelimit (#500) * Implementing a ratelimit function * Fix error page formatting * Add rate limiting tests * Rate limit authentication functions and rate limit admin send email function * Load user solves before we load challenges to avoid unstyled buttons (#502) * Add a challenge preview (#503) * Adding a challenge preview to the admin panel * Change /admin/chals/<int:chalid> to /admin/chal/<int:chalid> * Adding codecov (#504) * Test coverage at https://codecov.io/gh/CTFd/CTFd * Sendmail improvements (#505) * Add get_smtp timeout, add sendmail error messages * Adding more error handling to sendmail * Adding Flask-Script (#507) * Pause ctf (#508) * Implement CTF pausing * Test CTF pausing * Fix loading challenges for users (#510) * Fix loading challenges for users * Temporarily switch themes in test * Pause help text (#509) * Adding pause help text * Pages authed (#511) * Adding authentication options to pages * Adding tests for accessing pages while draft & auth_required * Merging master into 1.1 (#513) * Name the core theme and remove the original theme
62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
"""Add draft and title to Pages
|
|
|
|
Revision ID: c12d2a1b0926
|
|
Revises: 2539d8b5082e
|
|
Create Date: 2017-12-02 18:20:02.820141
|
|
|
|
"""
|
|
from CTFd.models import db
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.sql import text, table, column
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'c12d2a1b0926'
|
|
down_revision = '2539d8b5082e'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
pages_table = table('pages',
|
|
column('id', db.Integer),
|
|
column('route', db.String(80)),
|
|
column('title', db.String(80)),
|
|
column('draft', db.Boolean),
|
|
)
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
connection = op.get_bind()
|
|
op.add_column('pages', sa.Column('auth_required', sa.Boolean(), nullable=True))
|
|
op.add_column('pages', sa.Column('draft', sa.Boolean(), nullable=True))
|
|
op.add_column('pages', sa.Column('title', sa.String(length=80), nullable=True))
|
|
|
|
for page in connection.execute(pages_table.select()):
|
|
if page.route == 'index':
|
|
connection.execute(
|
|
pages_table.update().where(
|
|
pages_table.c.id == page.id
|
|
).values(
|
|
title=None,
|
|
draft=False
|
|
)
|
|
)
|
|
else:
|
|
connection.execute(
|
|
pages_table.update().where(
|
|
pages_table.c.id == page.id
|
|
).values(
|
|
title=page.route.title(),
|
|
draft=False
|
|
)
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('pages', 'auth_required')
|
|
op.drop_column('pages', 'title')
|
|
op.drop_column('pages', 'draft')
|
|
# ### end Alembic commands ###
|