Skip to content

Instantly share code, notes, and snippets.

@lucasuyezu
Created December 15, 2014 15:58
Show Gist options
  • Save lucasuyezu/cfdc5232a7c210d391e0 to your computer and use it in GitHub Desktop.
Save lucasuyezu/cfdc5232a7c210d391e0 to your computer and use it in GitHub Desktop.
example
# Bad
class BackupsController < ApplicationController
def index
end
def show
end
# All other REST methods
# And then...
def restores
# List restores (via GET)
end
def restore
# Execute a restore (via POST)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment