Reorder, remove snooze, delete, sso_auth_token
This commit is contained in:
parent
1d94e65ca8
commit
f41b30b485
4 changed files with 17 additions and 18 deletions
|
@ -27,7 +27,7 @@ class DeviseOverrides::SessionsController < ::DeviseTokenAuth::SessionsControlle
|
|||
|
||||
sign_in(:user, @resource, store: false, bypass: false)
|
||||
# invalidate the token after the user is signed in
|
||||
@resource.invalidate_sso_auth_token(params[:sso_auth_token])
|
||||
# @resource.invalidate_sso_auth_token(params[:sso_auth_token])
|
||||
end
|
||||
|
||||
def process_sso_auth_token
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
>
|
||||
{{ this.$t('CONVERSATION.HEADER.OPEN_ACTION') }}
|
||||
</woot-button>
|
||||
<woot-button
|
||||
<!-- <woot-button
|
||||
v-if="showAdditionalActions"
|
||||
ref="arrowDownButton"
|
||||
:color-scheme="buttonClass"
|
||||
|
@ -41,7 +41,7 @@
|
|||
icon="ion-arrow-down-b"
|
||||
emoji="🔽"
|
||||
@click="openDropdown"
|
||||
/>
|
||||
/> -->
|
||||
</div>
|
||||
<div
|
||||
v-if="showActionsDropdown"
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="context-menu-wrap">
|
||||
<context-menu
|
||||
<!-- <context-menu
|
||||
v-if="isBubble && !isMessageDeleted"
|
||||
:is-open="showContextMenu"
|
||||
:show-copy="hasText"
|
||||
|
@ -76,7 +76,7 @@
|
|||
@toggle="handleContextMenuClick"
|
||||
@delete="handleDelete"
|
||||
@copy="handleCopy"
|
||||
/>
|
||||
/> -->
|
||||
</div>
|
||||
</li>
|
||||
</template>
|
||||
|
|
|
@ -70,7 +70,18 @@
|
|||
</div>
|
||||
</accordion-item>
|
||||
</div>
|
||||
|
||||
<accordion-item
|
||||
v-if="hasContactAttributes"
|
||||
:title="$t('CONVERSATION_SIDEBAR.ACCORDION.CONTACT_ATTRIBUTES')"
|
||||
:is-open="isContactSidebarItemOpen('is_contact_attributes_open')"
|
||||
@click="
|
||||
value => toggleSidebarUIState('is_contact_attributes_open', value)
|
||||
"
|
||||
>
|
||||
<contact-custom-attributes
|
||||
:custom-attributes="contact.custom_attributes"
|
||||
/>
|
||||
</accordion-item>
|
||||
<accordion-item
|
||||
v-if="browser.browser_name"
|
||||
:title="$t('CONVERSATION_SIDEBAR.ACCORDION.CONVERSATION_INFO')"
|
||||
|
@ -126,18 +137,6 @@
|
|||
/>
|
||||
</div>
|
||||
</accordion-item>
|
||||
<accordion-item
|
||||
v-if="hasContactAttributes"
|
||||
:title="$t('CONVERSATION_SIDEBAR.ACCORDION.CONTACT_ATTRIBUTES')"
|
||||
:is-open="isContactSidebarItemOpen('is_contact_attributes_open')"
|
||||
@click="
|
||||
value => toggleSidebarUIState('is_contact_attributes_open', value)
|
||||
"
|
||||
>
|
||||
<contact-custom-attributes
|
||||
:custom-attributes="contact.custom_attributes"
|
||||
/>
|
||||
</accordion-item>
|
||||
<accordion-item
|
||||
v-if="contact.id"
|
||||
:title="$t('CONVERSATION_SIDEBAR.ACCORDION.PREVIOUS_CONVERSATION')"
|
||||
|
|
Loading…
Reference in a new issue