mirror of
https://github.com/astuto/astuto.git
synced 2026-09-02 20:25:15 +02:00
6 lines
105 B
Ruby
6 lines
105 B
Ruby
class BoardsController < ApplicationController
|
|
def show
|
|
@board = Board.find(params[:id])
|
|
end
|
|
end
|