Function rootPathFromName

Convenience alias

Prototype

vibe.web.common.RootPath rootPathFromName() @property;

Example

import vibe.http.router;
import vibe.web.rest;

@rootPathFromName
interface IAPI
{
	int getFoo();
}

class API : IAPI
{
	int getFoo()
	{
		return 42;
	}
}

auto router = new URLRouter();
registerRestInterface(router, new API());
auto routes= router.getAllRoutes();

assert(routes[HTTPMethod.GET][0].pattern == "/iapi/foo");

Authors

Sönke Ludwig, Михаил Страшун

Copyright

© 2012-2013 RejectedSoftware e.K.

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.