URL: /users/
Method: POST
Request Data:
#!/usr/bin/env python | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
""" |
import Ember from 'ember'; | |
function logHook(property) { | |
return function() { | |
let log = `<span class="log-item log-hook-item">${this._debugContainerKey} - ${property}</span>`; | |
Ember.$('body').append(log); | |
return this._super(...arguments); | |
}; | |
}; | |
export default Ember.Controller.extend({ |