Skip to content

Commit

Permalink
generate-story-status-model
Browse files Browse the repository at this point in the history
## Have a configurable set of statuses

In order to support management of the statuses available, we'll create a StoryStatus model

	$ hobo generate resource story_status name:string
  • Loading branch information
bryanlarsen authored and iox committed Aug 12, 2013
1 parent a2b7deb commit 48a8223
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/controllers/story_statuses_controller.rb
@@ -0,0 +1,7 @@
class StoryStatusesController < ApplicationController

hobo_model_controller

auto_actions :all

end
29 changes: 29 additions & 0 deletions app/models/story_status.rb
@@ -0,0 +1,29 @@
class StoryStatus < ActiveRecord::Base

hobo_model # Don't put anything above this

fields do
name :string
timestamps
end
attr_accessible :name

# --- Permissions --- #

def create_permitted?
acting_user.administrator?
end

def update_permitted?
acting_user.administrator?
end

def destroy_permitted?
acting_user.administrator?
end

def view_permitted?(field)
true
end

end
11 changes: 11 additions & 0 deletions test/fixtures/story_statuses.yml
@@ -0,0 +1,11 @@
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html

# This model initially had no columns defined. If you add columns to the
# model remove the '{}' from the fixture names and add the columns immediately
# below each fixture, per the syntax in the comments below
#
one: {}
# column: value
#
two: {}
# column: value
7 changes: 7 additions & 0 deletions test/functional/story_statuses_controller_test.rb
@@ -0,0 +1,7 @@
require 'test_helper'

class StoryStatusesControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end
7 changes: 7 additions & 0 deletions test/unit/story_status_test.rb
@@ -0,0 +1,7 @@
require 'test_helper'

class StoryStatusTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

0 comments on commit 48a8223

Please sign in to comment.