Added a Recordings page where the user can see all recordings (#352)

This commit is contained in:
farhatahmad
2019-02-04 11:21:42 -05:00
committed by Jesus Federico
parent ef23cae73d
commit 8ff05643dc
8 changed files with 120 additions and 34 deletions

View File

@ -52,6 +52,9 @@ Rails.application.routes.draw do
get '/:user_uid/edit', to: 'users#edit', as: :edit_user
patch '/:user_uid/edit', to: 'users#update', as: :update_user
delete '/:user_uid', to: 'users#destroy', as: :delete_user
# All user recordings
get '/:user_uid/recordings', to: 'users#recordings', as: :get_user_recordings
end
# Handles Omniauth authentication.