Remove `no_pagination` option support from Blame view
<!--IssueSummary start-->
<details>
<summary>
Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards.
</summary>
- [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=410134)
</details>
<!--IssueSummary end-->
It's a follow-up for https://gitlab.com/gitlab-org/gitlab/-/merge_requests/119752
**Description**
Blame page for files with many lines can take a while to load.
As the first optimization, we added a pagination for it. But it was not convenient for everybody to use.
The next step was to add a `Show full blame` button that showed the blame view without pagination. It provided an option `no_pagination=true`.
Finally, we added a streaming mode that replaces `no_pagination` step completely.
Blame streaming was fully enabled in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/119752+.
**Proposal**
The code for `no_pagination` support should be deprecated, because no UI controls define it anymore. It should be safe to remove it.
Related code: https://gitlab.com/gitlab-org/gitlab/blob/81f86be30e01994e01361e400deff5d06a5328de/lib/gitlab/git/blame_mode.rb#L23
issue