summaryrefslogtreecommitdiff
path: root/src/web/app/common/mixins/api.js
blob: 42d96db559d46d9d69dba65af26e2a8527740de3 (plain)
1
2
3
4
5
6
7
8
import * as riot from 'riot';
import api from '../scripts/api';

export default me => {
	riot.mixin('api', {
		api: api.bind(null, me ? me.token : null)
	});
};