Skip to content

Commit

Permalink
ensure the session and users controllers don't get taken down for mai…
Browse files Browse the repository at this point in the history
…ntenance
  • Loading branch information
parndt committed Nov 30, 2009
1 parent 556a943 commit 34b03cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions refinerycms.gemspec
Original file line number Original file line Diff line number Diff line change
@@ -1,9 +1,9 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms} s.name = %q{refinerycms}
s.version = "0.9.5.18" s.version = "0.9.5.19"


s.authors = ["Resolve Digital", "David Jones", "Philip Arndt"] s.authors = ["Resolve Digital", "David Jones", "Philip Arndt"]
s.date = %q{2009-11-30} s.date = %q{2009-12-01}


s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.} s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.}
s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.} s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.}
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -27,4 +27,7 @@ def destroy
redirect_back_or_default(new_session_url) redirect_back_or_default(new_session_url)
end end


protected
def take_down_for_maintenance?;end

end end
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def purge
end end


protected protected
def take_down_for_maintenance?;end


def find_user def find_user
@user = User.find(params[:id]) @user = User.find(params[:id])
Expand Down

0 comments on commit 34b03cd

Please sign in to comment.