-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into pay-2842-manager-mode…
…-pay-and-earn * origin/main: Create Apps Dev Docs link updated (#8492) Fix typos (#8620) Fix album tile playback (#8637) [C-4451] Add feature flag and switch for edit track redesign (#8639) Fix copy (#8640) Add DPID and party name info to distro docs (#8638) [C-4237] Fix create notification when track is published (#8634) Fix chromecast support, again (#8636) Audius Protocol v0.6.114⚠️ [C-4416, C-4418, C-4419 C-4322] Fast SSR (#8603) PROTO-1846: add discovery listens status to healthz (#8631) [QA-1226] Add missing tier info (#8635) Fix first track in lineup playback issue (#8632) [QA-1321] Show spinner for audio balance if rpc call fails (#8630) [C-4417] Add a buffering metric (#8619) Replace structuredClone with cloneDeep for native compat (#8633) [PROTO-1802] Add DDEX entrypoint UI deep link (#8374)
- Loading branch information
Showing
151 changed files
with
2,417 additions
and
3,026 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"version": "0.6.113", | ||
"version": "0.6.114", | ||
"service": "content-node" | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { full } from '@audius/sdk' | ||
|
||
import { Grant } from '~/models/Grant' | ||
import { decodeHashId } from '~/utils/hashIds' | ||
|
||
export const grantFromSDK = (input: full.Grant): Grant => { | ||
return { | ||
grantee_address: input.granteeAddress, | ||
user_id: decodeHashId(input.userId) ?? null, | ||
is_revoked: input.isRevoked, | ||
is_approved: input.isApproved, | ||
created_at: input.createdAt, | ||
updated_at: input.updatedAt | ||
} | ||
} |
Oops, something went wrong.