Skip to content

Instantly share code, notes, and snippets.

@tpope
Created November 15, 2010 23:34
Show Gist options
  • Save tpope/701180 to your computer and use it in GitHub Desktop.
Save tpope/701180 to your computer and use it in GitHub Desktop.
Cleanup
%h3 Edit #{setting}
= form_for setting do |f|
render f
%fieldset.actions
= f.submit "Save"
class SettingsController < ApplicationController
expose(:setting)
def update
setting.save
respond_with setting, :location => settings_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment