@fleetbase/storefront-engine
Version:
Headless Commerce & Marketplace Extension for Fleetbase
17 lines (14 loc) • 438 B
JavaScript
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';
export default class PromotionsController extends Controller {
intl;
get tabs() {
return [
{
route: 'promotions.push-notifications',
label: this.intl.t('storefront.promotions.push-notifications.tab-title'),
icon: 'bell',
},
];
}
}