NAME
Yancy::Plugin::Editor - Yancy content editor, admin, and management application
VERSION
version 1.028
SYNOPSIS
use Mojolicious::Lite;
plugin Yancy => {
backend => 'sqlite://myapp.db',
read_schema => 1,
editor => {
# XXX
},
};
DESCRIPTION
XXX
CONFIGURATION
This plugin has the following configuration options.
XXX schema openapi default_controller backend moniker
- route
-
A base route to add Yancy to. This allows you to customize the URL and add authentication or authorization. Defaults to allowing access to the Yancy web application under
/yancy
, and the REST API under/yancy/api
. - return_to
-
The URL to use for the "Back to Application" link. Defaults to
/
.
HELPERS
XXX
yancy.editor.route
Get the route where the editor will appear.
yancy.editor.openapi
my $openapi = $c->yancy->openapi;
Get the Mojolicious::Plugin::OpenAPI object containing the OpenAPI interface for this Yancy API.
TEMPLATES
yancy/editor.html.ep
This is the main Yancy web application. You should not override this. If you need to, consider filing a bug report or feature request.
SEE ALSO
Yancy::Help::Config, Mojolicious::Plugin::Yancy, Yancy
AUTHOR
Doug Bell <preaction@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2019 by Doug Bell.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.