Link to custom domain docs
This commit is contained in:
parent
1fc39d0ae5
commit
dd69a9ea2a
|
|
@ -35,6 +35,11 @@ const String kMacOSUrl = 'http://download.invoiceninja.com/macos';
|
||||||
const String kLinuxUrl = 'http://download.invoiceninja.com/linux';
|
const String kLinuxUrl = 'http://download.invoiceninja.com/linux';
|
||||||
|
|
||||||
const String kDocsUrl = 'https://invoiceninja.github.io/docs/getting-started/';
|
const String kDocsUrl = 'https://invoiceninja.github.io/docs/getting-started/';
|
||||||
|
const String kDocsCustomDomainUrl =
|
||||||
|
'https://invoiceninja.github.io/docs/hosted-custom-domain/';
|
||||||
|
const String kDocsCustomFieldsUrl =
|
||||||
|
'https://invoiceninja.github.io/docs/custom-fields/';
|
||||||
|
|
||||||
const String kForumUrl = 'https://forum.invoiceninja.com';
|
const String kForumUrl = 'https://forum.invoiceninja.com';
|
||||||
const String kApiDocsURL =
|
const String kApiDocsURL =
|
||||||
'https://app.swaggerhub.com/apis/invoiceninja/invoiceninja';
|
'https://app.swaggerhub.com/apis/invoiceninja/invoiceninja';
|
||||||
|
|
|
||||||
|
|
@ -462,8 +462,7 @@ class _DesignSettingsState extends State<DesignSettings> {
|
||||||
text: localization.viewDocs.toUpperCase(),
|
text: localization.viewDocs.toUpperCase(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onPressed: () =>
|
onPressed: () => launch(kDocsCustomFieldsUrl),
|
||||||
launch('https://invoiceninja.github.io/docs/custom-fields/'),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (widget.draftMode)
|
if (widget.draftMode)
|
||||||
|
|
|
||||||
|
|
@ -343,8 +343,7 @@ class _ClientPortalState extends State<ClientPortal>
|
||||||
text: localization.viewDocs.toUpperCase(),
|
text: localization.viewDocs.toUpperCase(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
onPressed: () => launch(
|
onPressed: () => launch(kDocsCustomDomainUrl),
|
||||||
'https://invoiceninja.github.io/docs/hosted-custom-domain/'),
|
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
SizedBox()
|
SizedBox()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue