Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| New feature | ✨ :sparkles: |
| Bugfix | 🔨 🐛 :bug: |
| Metadata | 📇 :card_index: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| New feature | ✨ :sparkles: |
| Bugfix | 🔨 🐛 :bug: |
| Metadata | 📇 :card_index: |
| import DS from 'ember-data'; | |
| export default DS.RESTAdapter.extend({ | |
| // namespace: 'api/v2', | |
| host: 'http://localhost:8080', | |
| find: function(store, type, id, snapshot) { | |
| return this.ajax(this.buildURL(type.typeKey, id, snapshot, 'find'), 'GET'); | |
| }, |