class Iro::ProfilesController
def create
def create @profile = Profile.new(profile_params) if @profile.save redirect_to @profile, notice: 'Profile was successfully created.' else render :new end end
def create @profile = Profile.new(profile_params) if @profile.save redirect_to @profile, notice: 'Profile was successfully created.' else render :new end end