Mercurial > hg > soundsoftware-site
view test/object_daddy_helpers.rb @ 1082:997f6d7738f7 bug_531
In repo controller entry action, show the page for the file even if it's binary (so user still has access to history etc links). This makes it possible to use the entry action as the default when a file is clicked on
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 22 Nov 2012 18:04:17 +0000 |
parents | 40f7cfd4df19 |
children |
line wrap: on
line source
module ObjectDaddyHelpers # TODO: Remove these three once everyone has ported their code to use the # new object_daddy version with protected attribute support def User.generate_with_protected(attributes={}) User.generate(attributes) end def User.generate_with_protected!(attributes={}) User.generate!(attributes) end def User.spawn_with_protected(attributes={}) User.spawn(attributes) end def User.add_to_project(user, project, roles) roles = [roles] unless roles.is_a?(Array) Member.generate!(:principal => user, :project => project, :roles => roles) end # Generate the default Query def Query.generate_default!(attributes={}) query = Query.spawn(attributes) query.name ||= '_' query.save! query end # Generate an issue for a project, using it's trackers def Issue.generate_for_project!(project, attributes={}) issue = Issue.spawn(attributes) do |issue| issue.project = project issue.tracker = project.trackers.first unless project.trackers.empty? yield issue if block_given? end issue.save! issue end end