mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
updated readme to include unscoping
This commit is contained in:
parent
c34af55812
commit
9282519797
1 changed files with 8 additions and 0 deletions
|
@ -118,6 +118,14 @@ User.page(7).per(50).padding(3)
|
|||
|
||||
Note that the `padding` scope also is not directly defined on the models.
|
||||
|
||||
### Unscoping
|
||||
|
||||
If for some reason you need to unscope `page` and `per` methods you can call `except(:limit, :offset)`
|
||||
|
||||
```ruby
|
||||
users = User.page(7).per(50)
|
||||
unpaged_users = users.except(:limit, :offset) # unpaged_users will not use the kaminari scopes
|
||||
```
|
||||
|
||||
## Configuring Kaminari
|
||||
|
||||
|
|
Loading…
Reference in a new issue