rokumatsumoto/boyutluseyler

View on GitHub
app/javascript/page_counters/store/mutations.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as types from './mutation_types';

export default {
  [types.SET_DOWNLOADS_COUNT](state, downloadsCount) {
    Object.assign(state, { downloadsCount });
  },

  [types.SET_LIKES_COUNT](state, likesCount) {
    Object.assign(state, { likesCount });
  },
};