12 lines
236 B
Ruby
12 lines
236 B
Ruby
class LandingsController < ApplicationController
|
|
def show
|
|
flash.keep(:welcome_letter)
|
|
|
|
if Current.user.boards.one?
|
|
redirect_to board_path(Current.user.boards.first)
|
|
else
|
|
redirect_to root_path
|
|
end
|
|
end
|
|
end
|