mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
app.utils utc_now() function. Added new endpoint
/service/{{service_id}}/notifications/month
57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
"""empty message
|
|
|
|
Revision ID: 0028_fix_reg_template_history
|
|
Revises: 0026_rename_notify_service
|
|
Create Date: 2016-06-13 11:04:15.888017
|
|
|
|
"""
|
|
|
|
# revision identifiers, used by Alembic.
|
|
from datetime import datetime
|
|
|
|
from sqlalchemy import text
|
|
|
|
from app.utils import utc_now
|
|
|
|
revision = "0028_fix_reg_template_history"
|
|
down_revision = "0026_rename_notify_service"
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
service_id = "d6aa2c68-a2d9-4437-ab19-3ae8eb202553"
|
|
user_id = "6af522d0-2915-4e52-83a3-3690455a5fe6"
|
|
|
|
|
|
def upgrade():
|
|
op.get_bind()
|
|
op.execute(
|
|
"delete from templates_history where name = 'Notify email verification code'"
|
|
)
|
|
|
|
template_history_insert = """INSERT INTO templates_history (id, name, template_type, created_at,
|
|
content, archived, service_id,
|
|
subject, created_by_id, version)
|
|
VALUES (:id, :name, :type, :time_now, :content, False, :service_id, :subject, :user_id, 1)
|
|
"""
|
|
email_verification_content = """Hi ((name)),\n\nTo complete your registration for GOV.UK Notify please click the link below\n\n((url))"""
|
|
|
|
input_params = {
|
|
"id": "ece42649-22a8-4d06-b87f-d52d5d3f0a27",
|
|
"name": "Notify email verification code",
|
|
"type": "email",
|
|
"time_now": utc_now(),
|
|
"content": email_verification_content,
|
|
"service_id": service_id,
|
|
"subject": "Confirm GOV.UK Notify registration",
|
|
"user_id": user_id,
|
|
}
|
|
conn = op.get_bind()
|
|
conn.execute(text(template_history_insert), input_params)
|
|
|
|
|
|
def downgrade():
|
|
### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
### end Alembic commands ###
|