-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #379 from MuckRock/feature/document-revision-control
Document Revisions UI
- Loading branch information
Showing
60 changed files
with
1,743 additions
and
406 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,235 @@ | ||
export const me = { | ||
id: 4, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/allan-headshot-2016.jpg", | ||
feature_level: 2, | ||
name: "Allan Lasser", | ||
organization: { | ||
id: 1, | ||
avatar_url: | ||
"https://squarelet-staging.s3.amazonaws.com/media/org_avatars/logo_uEHCMva.png", | ||
individual: false, | ||
name: "MuckRock", | ||
slug: "muckrock", | ||
monthly_credits: 5000, | ||
purchased_credits: 0, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 5000, | ||
plan: "Organization", | ||
}, | ||
organizations: [1, 4], | ||
admin_organizations: [40742], | ||
username: "lasser.allan", | ||
verified_journalist: true, | ||
}; | ||
|
||
export const users = [ | ||
{ | ||
next: null, | ||
previous: null, | ||
results: [ | ||
{ | ||
id: 1, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/avatars/Michael_Headshot.jpeg", | ||
name: "Michael Morisy", | ||
organization: 1, | ||
organizations: [1, 10], | ||
admin_organizations: [1, 10], | ||
username: "morisy", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 2, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/avatars/20140211-0O1A7147-2.jpg", | ||
name: "Chris Amico", | ||
organization: 1, | ||
organizations: [1, 11], | ||
admin_organizations: [11], | ||
username: "chrisamico", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 3, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/22_MuckRock_2018_PRELIMANRY_EDITS_DSC_5387_2018_Derek_Kouyoumjian_preview_SfuGGnJ.jpg", | ||
name: "Mitchell Kotler", | ||
organization: 1, | ||
organizations: [1, 12], | ||
admin_organizations: [1, 12], | ||
username: "mitch", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 4, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/allan-headshot-2016.jpg", | ||
name: "Allan Lasser", | ||
organization: 1, | ||
organizations: [1, 13], | ||
admin_organizations: [13], | ||
username: "lasser.allan", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 5, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/avatars/noah_oct2021_vsco_cropped_smaller.gif", | ||
name: "Amanda Hickman", | ||
organization: 1, | ||
organizations: [1, 14], | ||
admin_organizations: [1, 14], | ||
username: "amandabee", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 6, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/avatars/derek-crop-square_Rx7mFk8.jpg", | ||
name: "Derek Kravitz", | ||
organization: 1, | ||
organizations: [1, 15], | ||
admin_organizations: [1, 15], | ||
username: "DerekRKravitz", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 7, | ||
avatar_url: null, | ||
name: "Miranda Carruth", | ||
organization: 1, | ||
organizations: [1, 16], | ||
admin_organizations: [16], | ||
username: "mirandac", | ||
}, | ||
{ | ||
id: 8, | ||
avatar_url: "https://cdn.muckrock.com/media/avatars/kelly-square.jpg", | ||
name: "Kelly Kauffman", | ||
organization: 1, | ||
organizations: [1, 17], | ||
admin_organizations: [17], | ||
username: "kellykauffman", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 9, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/avatars/Albert_Serna_Jr.jpg", | ||
name: "Albert Serna Jr.", | ||
organization: 1, | ||
organizations: [1, 18], | ||
admin_organizations: [18], | ||
username: "AlbertSGJ", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 10, | ||
avatar_url: "https://cdn.muckrock.com/media/avatars/under.jpg", | ||
name: "JPat Brown", | ||
organization: 1, | ||
organizations: [1, 19], | ||
admin_organizations: [19], | ||
username: "JPatBrown", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 11, | ||
avatar_url: null, | ||
name: "Scott Klein", | ||
organization: 1, | ||
organizations: [1, 20], | ||
admin_organizations: [20], | ||
username: "ScottKlein", | ||
verified_journalist: true, | ||
}, | ||
{ | ||
id: 12, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/1_Nz2NFvHxTjqw5asaiPKf5w_sssJnjW.jpg", | ||
name: "Aron Pilhofer", | ||
organization: 1, | ||
organizations: [1, 21], | ||
admin_organizations: [22], | ||
username: "Pilhofer", | ||
verified_journalist: true, | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
export const organizations = { | ||
next: null, | ||
previous: null, | ||
results: [ | ||
{ | ||
id: 1, | ||
avatar_url: | ||
"https://squarelet-staging.s3.amazonaws.com/media/org_avatars/logo_uEHCMva.png", | ||
individual: false, | ||
name: "MuckRock", | ||
slug: "muckrock", | ||
monthly_credits: 5000, | ||
purchased_credits: 0, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 5000, | ||
plan: "Organization", | ||
}, | ||
{ | ||
id: 4, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/allan-headshot-2016.jpg", | ||
individual: true, | ||
name: "lasser.allan", | ||
slug: "lasserallan", | ||
monthly_credits: 2500, | ||
purchased_credits: 3000, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 2500, | ||
plan: "Professional", | ||
}, | ||
], | ||
}; | ||
|
||
export const organization = { | ||
id: 1, | ||
avatar_url: | ||
"https://squarelet-staging.s3.amazonaws.com/media/org_avatars/logo_uEHCMva.png", | ||
individual: false, | ||
name: "MuckRock", | ||
slug: "muckrock", | ||
monthly_credits: 5000, | ||
purchased_credits: 0, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 5000, | ||
plan: "Organization", | ||
}; | ||
|
||
export const proOrg = { | ||
id: 4, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/allan-headshot-2016.jpg", | ||
individual: true, | ||
name: "lasser.allan", | ||
slug: "lasserallan", | ||
monthly_credits: 2500, | ||
purchased_credits: 3000, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 2500, | ||
plan: "Professional", | ||
}; | ||
|
||
export const freeOrg = { | ||
id: 4, | ||
avatar_url: | ||
"https://cdn.muckrock.com/media/account_images/allan-headshot-2016.jpg", | ||
individual: true, | ||
name: "lasser.allan", | ||
slug: "lasserallan", | ||
monthly_credits: 0, | ||
purchased_credits: 0, | ||
credit_reset_date: "2023-11-28", | ||
monthly_credit_allowance: 0, | ||
plan: "Free", | ||
}; |
Oops, something went wrong.