mirror of
https://github.com/outline/outline.git
synced 2026-01-05 18:49:53 -06:00
* fix: Logic error in toast fix: Remove useless component * fix: Logout not clearing all stores * Add icons to notification settings * Add eslint rule to enforce spaced comment * Add eslint rule for arrow-body-style * Add eslint rule to enforce self-closing components * Add menu to api key settings Fix: Deleting webhook subscription does not remove from UI Split webhook subscriptions into active and inactive Styling updates
11 lines
577 B
TypeScript
11 lines
577 B
TypeScript
export const opensearchResponse = (baseUrl: string): string => `
|
|
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
|
|
<ShortName>Outline</ShortName>
|
|
<Description>Search Outline</Description>
|
|
<InputEncoding>UTF-8</InputEncoding>
|
|
<Image width="16" height="16" type="image/x-icon">${baseUrl}/images/favicon-16.png</Image>
|
|
<Url type="text/html" method="get" template="${baseUrl}/search/{searchTerms}?ref=opensearch"/>
|
|
<moz:SearchForm>${baseUrl}/search</moz:SearchForm>
|
|
</OpenSearchDescription>
|
|
`;
|