Skip to content

Instantly share code, notes, and snippets.

View hypesystem's full-sized avatar

Niels Abildgaard hypesystem

View GitHub Profile
# Original Rails controller and action
class EmployeesController < ApplicationController
def create
@employee = Employee.new(employee_params)
if @employee.save
redirect_to @employee, notice: "Employee #{@employee.name} created"
else
render :new
end