Skip to content

Commit 2f1ec96

Browse files
authored
Merge pull request #2760 from nervosnetwork/testnet
Deploy to mainnet
2 parents d22d39e + 6ed0880 commit 2f1ec96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/api/v2/nft/items_controller.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module V2
33
class NFT::ItemsController < BaseController
44
before_action :find_collection
55
def index
6-
scope = TokenItem.normal.includes(:collection)
6+
scope = TokenItem.normal.includes(:collection, :type_script, :owner, cell: [:cell_datum])
77
if params[:owner]
88
@owner = Address.find_address!(params[:owner])
99
scope = scope.where(owner_id: @owner.id)

0 commit comments

Comments
 (0)