10 lines
203 B
Ruby
10 lines
203 B
Ruby
class LandingsController < ApplicationController
|
|
def show
|
|
if Current.user.boards.one?
|
|
redirect_to board_path(Current.user.boards.first)
|
|
else
|
|
redirect_to root_path
|
|
end
|
|
end
|
|
end
|