su-its / ams-backend

:briefcase: (This repository is no longer maintained) The backend server of our Access-management-system.
MIT License
0 stars 0 forks source link

ページネーション #35

Closed equal-l2 closed 3 years ago

equal-l2 commented 3 years ago

closes #23


クエリパラメータpageを受け取ってページネーションできるようにしました。

返ってくるJSONは以下のような形式です:

{
  "page": 2,
  "next_page": "http://localhost:3000/v1/access_logs?page=3",
  "prev_page": "http://localhost:3000/v1/access_logs?page=1",
  "total_page": 15,
  "data": [
    {
      "user_id": 1,
      "entered_at": "2021-02-23T16:57:39.000Z",
      "exited_at": "2021-02-23T17:32:50.000Z"
    }
    // データ……
  ]
}
ghost commented 3 years ago

@equal-l2 テスティングしておきます。自分の作業が終わったらすぐやりたいと思います。

h-takeyeah commented 3 years ago

@equal-l2 自分もテストしてみます

ghost commented 3 years ago

@h-takeyeah mergeの方よろしくお願いします。

h-takeyeah commented 3 years ago

遅くなってすみません.マージしておきます