app/controllers/concerns/api/v1/users/controller_base.rb in bullet_train-api-1.2.9 vs app/controllers/concerns/api/v1/users/controller_base.rb in bullet_train-api-1.2.10

- old
+ new

@@ -48,6 +48,12 @@ end # GET /api/v1/users/:id def show end + + # PUT /api/v1/users/:id + # TODO: Implement this! + def update + raise "Not implemented" + end end