snibox/snibox

View on GitHub
app/javascript/snibox/mixins/factory.js

Summary

Maintainability
A
0 mins
Test Coverage
export default {
  methods: {
    factory() {
      return {
        snippet: {
          id: null,
          title: '',
          description: '',
          label: {
            id: -1,
            name: '',
            snippets_count: 0
          },
          snippetFiles: [{
            title: '',
            content: '',
            language: 'automatically',
            tabs: 4,
          }]
        }
      }
    }
  }
}