Changes of com.discord v1207
This commit is contained in:
parent
79cc469071
commit
ec286a9030
11183 changed files with 624324 additions and 580196 deletions
53
com.discord/res/xml/actions.xml
Normal file
53
com.discord/res/xml/actions.xml
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<actions>
|
||||
<action intentName="custom.actions.intent.JOIN_SERVER" queryPatterns="@array/actions_intent_join_server">
|
||||
<parameter name="inviteCode" type="https://schema.org/Text" />
|
||||
<fulfillment urlTemplate="https://discord.com/invite/{inviteCode}">
|
||||
<parameter-mapping intentParameter="inviteCode" required="false" urlParameter="inviteCode" />
|
||||
</fulfillment>
|
||||
</action>
|
||||
<action intentName="custom.actions.intent.SELECT_SERVER" queryPatterns="@array/actions_intent_select_server">
|
||||
<parameter name="serverName" type="https://schema.org/Text" />
|
||||
<fulfillment urlTemplate="https://discord.com/query/?filter=server{&serverName}">
|
||||
<parameter-mapping intentParameter="serverName" required="false" urlParameter="serverName" />
|
||||
</fulfillment>
|
||||
</action>
|
||||
<action intentName="custom.actions.intent.SELECT_CHANNEL" queryPatterns="@array/actions_intent_select_channel">
|
||||
<parameter name="channelName" type="https://schema.org/Text" />
|
||||
<parameter name="serverName" type="https://schema.org/Text" />
|
||||
<fulfillment urlTemplate="https://discord.com/query/?filter=channel{&channelName,serverName}">
|
||||
<parameter-mapping intentParameter="channelName" required="false" urlParameter="channelName" />
|
||||
<parameter-mapping intentParameter="serverName" required="false" urlParameter="serverName" />
|
||||
</fulfillment>
|
||||
</action>
|
||||
<action intentName="custom.actions.intent.SELECT_USER" queryPatterns="@array/actions_intent_select_user">
|
||||
<parameter name="userName" type="https://schema.org/Text" />
|
||||
<fulfillment urlTemplate="https://discord.com/query/?filter=user{&userName}">
|
||||
<parameter-mapping intentParameter="userName" required="false" urlParameter="userName" />
|
||||
</fulfillment>
|
||||
</action>
|
||||
<action intentName="actions.intent.CREATE_MESSAGE">
|
||||
<fulfillment urlTemplate="https://discord.com/query/?filter=user{&userName}">
|
||||
<parameter-mapping intentParameter="message.recipient.name" urlParameter="userName" />
|
||||
</fulfillment>
|
||||
</action>
|
||||
<action intentName="actions.intent.OPEN_APP_FEATURE">
|
||||
<fulfillment urlTemplate="https://discord.com/feature/{feature}">
|
||||
<parameter-mapping entityMatchRequired="true" intentParameter="feature" urlParameter="feature" />
|
||||
</fulfillment>
|
||||
<parameter name="feature">
|
||||
<entity-set-reference entitySetId="FeatureEntitySet" />
|
||||
</parameter>
|
||||
</action>
|
||||
<entity-set entitySetId="FeatureEntitySet">
|
||||
<entity identifier="settings" name="@string/settings" />
|
||||
<entity identifier="account" name="@string/account" />
|
||||
<entity identifier="nitro" name="@string/premium" />
|
||||
<entity identifier="billing" name="@string/billing" />
|
||||
<entity identifier="voice" name="@string/voice_settings" />
|
||||
<entity identifier="friends" name="@string/friends" />
|
||||
<entity identifier="mentions" name="@string/mentions" />
|
||||
<entity identifier="quickSwitcher" name="@string/quick_switcher" />
|
||||
<entity identifier="createServer" name="@string/create_server_button_action" />
|
||||
</entity-set>
|
||||
</actions>
|
Loading…
Add table
Add a link
Reference in a new issue