Created
July 5, 2021 10:29
-
-
Save juque/69e6cb85e5cb49afa9bddab4cabdaf1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DashboardController < ApplicationController | |
before_action :login_required | |
def index | |
@orders = if current_shop.has?(:orders) | |
current_shop.orders(sort: 'updated_on.desc') | |
else | |
[] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment