This file contains hidden or 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
# card belongs_to hand and a user | |
# hand belongs_to game | |
# game has_many spaces | |
/hands/:hand_id/cards/:card_id/spaces/:space_id/place?auth_token=TOKEN | |
/cards/:card_id/spaces/:space_id/place?auth_token=TOKEN | |
/cards/:card_id/place?auth_token=TOKEN&space_id=:space_id |
This file contains hidden or 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
# game.rb | |
has_many :hands | |
has_and_belongs_to_many :users | |
embeds_many :spaces | |
# hand.rb | |
belongs_to :user | |
belongs_to :game | |
has_many :cards |
NewerOlder