This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Api::Mobile::V1::GroupsController < Api::Mobile::V1::ApplicationApiController | |
acts_as_token_authentication_handler_for User | |
before_action :check_user_house_access | |
before_action :check_group_id, only: [:accept, :leave, :join] | |
before_action :check_user_group_access, only: [:accept, :leave] | |
#Todo: invite friends to group |