Skip to content

Instantly share code, notes, and snippets.

View AjithkumarPS24's full-sized avatar
🎯
Focusing

AjithkumarPS24

🎯
Focusing
View GitHub Profile
@AjithkumarPS24
AjithkumarPS24 / create.rb
Created December 24, 2025 06:12
Rails Service Object Example Code
# app/services/users/create.rb
class Users::Create
def initialize(params)
@params = params
end
def call
ActiveRecord::Base.transaction do
user = User.create!(@params)
assign_role(user)