app/controllers/bjond_registrations_controller.rb in bjond-api-0.3.9 vs app/controllers/bjond_registrations_controller.rb in bjond-api-0.3.10
- old
+ new
@@ -36,28 +36,28 @@
throw "Unable to register with Bjond. \n" + response.body
end
if @bjond_registration.save
- redirect_to @bjond_registration, notice: 'Bjond registration was successfully created.'
+ redirect_to @bjond_registration, notice: 'Bjönd registration was successfully created.'
else
render :new
end
end
# PATCH/PUT /bjond_registrations/1
def update
if @bjond_registration.update(bjond_registration_params)
- redirect_to @bjond_registration, notice: 'Bjond registration was successfully updated.'
+ redirect_to @bjond_registration, notice: 'Bjönd registration was successfully updated.'
else
render :edit
end
end
# DELETE /bjond_registrations/1
def destroy
@bjond_registration.destroy
- redirect_to bjond_registrations_url, notice: 'Bjond registration was successfully destroyed.'
+ redirect_to bjond_registrations_url, notice: 'Bjönd registration was successfully destroyed.'
end
private
# Use callbacks to share common setup or constraints between actions.
def set_bjond_registration