Skip to content

Commit

Permalink
feat: new parcel card (#200)
Browse files Browse the repository at this point in the history
* feat: update the API to accomodate for new features

* feat: add ParcelCard component mocking existing

* feat: update saga api calls. new API requirements

* feat: finish implementing ParcelCard. move to parcels with publications everywhere

* chore: remove test code, fix lint and tests

* fix: always send default values on filter api call

* fix: homepage parcel cards style

* feat: add last_transfered_at time to parcels

* fix: fix last sold at time

* fix: don't show highlights title if tags is empty

* fix: update specs

* fix: show tags in same order. don't clip tooltips

* fix: filter expired publications

* fix: return only open publications on inRange

* fix: unique key

* fix: only show open publication prices

* fix: don't send empty status

* fix: correctly fetch asset_ids

* feat: bump decentraland eth

* chore: added translation
  • Loading branch information
nicosantangelo authored and Juan Cazala committed Apr 30, 2018
1 parent 42dfbbf commit cc22f5e
Show file tree
Hide file tree
Showing 71 changed files with 6,504 additions and 6,301 deletions.
9 changes: 9 additions & 0 deletions migrations/1524765969000_parcels-add-last-transfer-at.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Parcel } from '../src/Parcel'

exports.up = pgm => {
const tableName = Parcel.tableName

pgm.addColumns(tableName, {
last_transferred_at: { type: 'BIGINT' }
})
}
Loading

0 comments on commit cc22f5e

Please sign in to comment.