update reports endpoint.
This commit is contained in:
parent
5c028fea7f
commit
f943affb19
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
// Sample query:
|
||||
// https://reports.lbry.com/common/new?primary_email=e4drcf@gmail.com
|
||||
// https://reports.odysee.tv/common/new?primary_email=e4drcf@gmail.com
|
||||
// &channel_name=e4drcf
|
||||
// &channel_claim_id=43a7e08b0d83cfb8bc31e59bc48334a90ccfd8cb
|
||||
// &type=Sexual%20content
|
||||
|
|
|
@ -12,13 +12,13 @@ export const doReportContent = (category: string, params: string) => (dispatch:
|
|||
let REPORT_URL;
|
||||
switch (category) {
|
||||
case COPYRIGHT_ISSUES:
|
||||
REPORT_URL = 'https://reports.lbry.com/copyright_issue/new';
|
||||
REPORT_URL = 'https://reports.odysee.tv/copyright_issue/new';
|
||||
break;
|
||||
case OTHER_LEGAL_ISSUES:
|
||||
REPORT_URL = 'https://reports.lbry.com/other_legal_issue/new';
|
||||
REPORT_URL = 'https://reports.odysee.tv/other_legal_issue/new';
|
||||
break;
|
||||
default:
|
||||
REPORT_URL = 'https://reports.lbry.com/common/new';
|
||||
REPORT_URL = 'https://reports.odysee.tv/common/new';
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue