Skip to content

Commit

Permalink
feat!: remove issuer (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Apr 23, 2024
1 parent 04c0634 commit 24d22ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions upload-api/tables/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,14 @@ export function useStoreTable(dynamoDb, tableName) {
* @param {StoreAddInput} item
* @returns {ReturnType<StoreTable['insert']>}
*/
insert: async ({ space, link, origin, size, issuer, invocation }) => {
insert: async ({ space, link, origin, size, invocation }) => {
const insertedAt = new Date().toISOString()

const item = {
space,
link: link.toString(),
size,
origin: origin?.toString(),
issuer,
invocation: invocation.toString(),
insertedAt,
}
Expand Down

0 comments on commit 24d22ee

Please sign in to comment.