huridocs/uwazi

View on GitHub
app/react/Relationships/actions/uiActions.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import * as types from './actionTypes';

export function openPanel() {
  return { type: types.OPEN_RELATIONSHIPS_PANEL };
}

export function closePanel() {
  return { type: types.CLOSE_RELATIONSHIPS_PANEL };
}

export function searching() {
  return { type: types.SEARCHING_RELATIONSHIPS };
}