module.exports.getUserPreferences = function * () {
    let result = yield accountService.getUserPreferences(this.session.username);
    this.body = result;
    this.status = 200;
};