6c048626d0
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
import { CAMPAIGN_TYPES } from '../constants/campaign';
|
|
|
|
export default {
|
|
computed: {
|
|
campaignType() {
|
|
const pageURL = window.location.href;
|
|
return pageURL.substring(pageURL.lastIndexOf('/') + 1);
|
|
},
|
|
isOngoingType() {
|
|
return this.campaignType === CAMPAIGN_TYPES.ONGOING;
|
|
},
|
|
isOnOffType() {
|
|
return this.campaignType === CAMPAIGN_TYPES.ONE_OFF;
|
|
},
|
|
},
|
|
};
|