mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
6 lines
105 B
Ruby
6 lines
105 B
Ruby
|
|
class BoardsController < ApplicationController
|
||
|
|
def show
|
||
|
|
@board = Board.find(params[:id])
|
||
|
|
end
|
||
|
|
end
|