- Connexion & inscription ;
- Création d'un appel aux armes pour un format donné (admin) ;
- S'inscrire à une partie pour un format donné en invitant d'autres joueurs ;
- Voir la liste des invitations (reçues et envoyées) ;
- Accepter/décliner une invitation ;
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
<%= form_for @topic do |f| %> | |
<%= debug f.object.error_messages %> | |
<p> | |
<%= f.label :name %><br /> | |
<%= f.text_field :name %> | |
</p> | |
<%= fields_for @post do |ff| %> | |
<p> | |
<%= ff.label :content %><br /> |
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
class TopicsController < ApplicationController | |
def index | |
@topics = Topic.all | |
end | |
def show | |
@topic = Topic.find(params[:id]) | |
end | |
def new |