Sha256: db1a4ba52c2e9a7d5a3db05d2b48690bf8ffc9d53bea8f08c56ec9f18301cd27
Contents?: true
Size: 277 Bytes
Versions: 23
Compression:
Stored size: 277 Bytes
Contents
class SettingsController < ApplicationController load_and_authorize_resource def show @settings = Settings.new end def update @settings = Settings.new(params[:settings]) @settings.save! redirect_to settings_path, :notice => "Changes saved" end end
Version data entries
23 entries across 23 versions & 1 rubygems