From aaa631737151ef5ba2d2738c1a0b6a3822a8bdec Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 22 Feb 2016 16:46:18 +0000 Subject: [PATCH] Rename SMS to send Because this view is no longer just for sending SMS messages, it and its associated tests should be renamed, so `send_sms.py` becomes `send.py`, etc. --- app/main/__init__.py | 2 +- app/main/views/{sms.py => send.py} | 0 tests/app/main/views/{test_sms.py => test_send.py} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename app/main/views/{sms.py => send.py} (100%) rename tests/app/main/views/{test_sms.py => test_send.py} (100%) diff --git a/app/main/__init__.py b/app/main/__init__.py index fbfd2562a..ec9691d24 100644 --- a/app/main/__init__.py +++ b/app/main/__init__.py @@ -3,7 +3,7 @@ from flask import Blueprint main = Blueprint('main', __name__) from app.main.views import ( - index, sign_in, sign_out, register, two_factor, verify, sms, add_service, + index, sign_in, sign_out, register, two_factor, verify, send, add_service, code_not_received, jobs, dashboard, templates, service_settings, forgot_password, new_password, styleguide, user_profile, choose_service, api_keys, manage_users ) diff --git a/app/main/views/sms.py b/app/main/views/send.py similarity index 100% rename from app/main/views/sms.py rename to app/main/views/send.py diff --git a/tests/app/main/views/test_sms.py b/tests/app/main/views/test_send.py similarity index 100% rename from tests/app/main/views/test_sms.py rename to tests/app/main/views/test_send.py