summaryrefslogtreecommitdiff
path: root/app/controllers/activities_controller.rb
blob: a32ffab1a104a86ee415bbc0d8ae137093e27e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ActivitiesController < ApplicationController
  def show
    @activity = Activity.find(params[:id])
  end

  def start
    @activity = Activity.find(params[:id])
    if current_char.can_do_activity?(@activity)
      redirect_to action: :show
    else
      flash[:alert] = "You can't do that. Make sure you have the items and meet the requirements."
      redirect_to character_path(current_char)
    end
  end
end