Skip to content

Instantly share code, notes, and snippets.

View chardskarth's full-sized avatar
🎯
Focusing

Richard Glen Domingo chardskarth

🎯
Focusing
  • White Cloak Technologies Inc.
  • QC, Metro Manila, Philippines
  • 10:54 (UTC +08:00)
View GitHub Profile
@chardskarth
chardskarth / GitCommitEmoji.md
Last active October 29, 2019 06:58 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@chardskarth
chardskarth / application.js
Created December 7, 2017 13:17 — forked from greyby/application.js
custom ember data's restful URL and modify the HTTP method
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');
},