I'm new to Rails, and I'm trying to build this in my app:
Signed Captain creates a Team (name, color, etc) then add Members in it. Members are automatically assigned to the Team created.
My signed Captain has a button to create a new Team on his profile, it goes to the team#new view. Once the team form is validated, the member#new is loaded to add members one by one to the team.
I set up the models relationships :
Captain:
has_many :teams
has_many :members through :team
Team:
belongs_to :captain #captain_id
has_many :members
Member:
belongs_to :team #team_id
has_one :captain
I found how to add the captain_id inside the team table using devise and current_user, but I just can't figure out how to deal with the team_id once the team created. I would like to get the team_id value in the "add member" view and deal with my Member controller to save it with each member.
If you structure your routes in the following fashion you'll have access to the team and member details on member pages as well as a team id on the team pages:
You can route to a team using named routes:
teams_path
,team_path(@team)
And for members:team_members_path(@team)
,team_member_path(@team, @member)
In the teams_controller you'll have access to
params[:id]
when a team id is provided. For instance, in the url/teams/1
,params[:id]
would hold the value1
.In the members controller, you'll have
params[:team_id]
andparams[:id]
will hold the member id.For example: