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 committed Nov 14, 2011
1 parent 5a1c938 commit 7fd1e13
Show file tree
Hide file tree
Showing 5 changed files with 62 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
28 changes: 28 additions & 0 deletions app/models/story_status.rb
@@ -0,0 +1,28 @@
class StoryStatus < ActiveRecord::Base

hobo_model # Don't put anything above this

fields do
name :string
timestamps
end

# --- 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://ar.rubyonrails.org/classes/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
8 changes: 8 additions & 0 deletions test/functional/story_statuses_controller_test.rb
@@ -0,0 +1,8 @@
require 'test_helper'

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

class StoryStatusTest < ActiveSupport::TestCase
# Replace this with your real tests.
test "the truth" do
assert true
end
end

0 comments on commit 7fd1e13

Please sign in to comment.