Skip to content

Instantly share code, notes, and snippets.

@tomee03
tomee03 / alias.js
Created April 11, 2016 11:53
Alias route
// Simple call to drupal
exports.install = function() {
F.route('/article/{{rewrite}}', json_article); // e.g. Article
}
function json_article(rewrite) {
var self = this;
// yourDrupalRewrite = your rewrite name for e.g. articles
Utils.request('http://domain.ltd', [], {yourDrupalRewrite: rewrite}, function(err, data) {