diff --git a/server/views.py b/server/views.py index 26226d6..e7df9a8 100644 --- a/server/views.py +++ b/server/views.py @@ -8,7 +8,6 @@ from server.forms import ExamForm, RoomForm, ChooseRoomForm, ImportStudentFromSheetForm, \ ImportStudentFromCanvasRosterForm, DeleteStudentForm, AssignForm, EmailForm, EditStudentForm from server.services.google import get_spreadsheet_tabs -# from server.services.auth import google_oauth import server.services.canvas as canvas_client from server.services.email import email_students from server.services.core.data import parse_form_and_validate_room, validate_students, \ @@ -127,7 +126,6 @@ def exam(exam): @app.route('//rooms/import/') -# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly']) def import_room(exam): """ Path: /offerings//exams//rooms/import @@ -140,7 +138,6 @@ def import_room(exam): @app.route('//rooms/import/from_custom_sheet/', methods=['GET', 'POST']) -# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly']) def import_room_from_custom_sheet(exam): """ Path: /offerings//exams//rooms/import/new @@ -168,7 +165,6 @@ def import_room_from_custom_sheet(exam): @app.route('//rooms/import/from_master_sheet/', methods=['GET', 'POST']) -# @google_oauth.required(scopes=['https://www.googleapis.com/auth/spreadsheets.readonly']) def import_room_from_master_sheet(exam): """ Path: /offerings//exams//rooms/import/choose