Skip to content
Snippets Groups Projects
updateParticipationMixin.js 288 B
/**
 * Mixin to provide shared functionality needed to update participations
 */
import documentationPartMixin from "../documentation/documentationPartMixin";
import sendToServerMixin from "./sendToServerMixin";

export default {
  mixins: [documentationPartMixin, sendToServerMixin],
};