aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo/index.js
blob: 51780a34edba68d4e7240c99ccb59a68343031d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { state as ModalState } from './store';

export { default as Component } from './Component';

const state = ModalState;
const debug = require('debug')('Ferdi:feature:publishDebugInfo');

export default function initialize() {
  debug('Initialize publishDebugInfo feature');

  function showModal() {
    state.isModalVisible = true;
  }

  window.ferdi.features.publishDebugInfo = {
    state,
    showModal,
  };
}