指定したIDのユーザをUSERSテーブルから削除します。

コントローラ

JsonControllerremoveメソッドを以下のように実装します。

def remove(id: Long) = DBAction.transaction { implicit rs =>
  // ユーザを削除
  Users.filter(t => t.id === id.bind).delete

  Ok(Json.obj("result" -> "success"))
}

実行

コマンドラインから以下のコマンドを実行してユーザが削除されることを確認してください。

curl -XPOST http://localhost:9000/json/remove/1