Skip to content

Instantly share code, notes, and snippets.

View mjaneczek's full-sized avatar

Michał Janeczek mjaneczek

View GitHub Profile
@mjaneczek
mjaneczek / team_interactor.rb
Created May 16, 2016 11:18
Interactor + tests example
class TeamInteractor
def initialize(user:)
@user = user
end
def create(team_params:)
@user.teams.create team_params
end
def invite(team_id:, user_id:)