mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-11 00:14:50 +03:00
13 lines
385 B
PHP
13 lines
385 B
PHP
<?php
|
|
|
|
$this->create('rainloop_index', '/')
|
|
->actionInclude('rainloop/index.php');
|
|
|
|
$this->create('rainloop_app', '/app/')
|
|
->actionInclude('rainloop/app.php');
|
|
|
|
$this->create('rainloop_ajax_personal', 'ajax/personal.php')
|
|
->actionInclude('rainloop/ajax/personal.php');
|
|
|
|
$this->create('rainloop_ajax_admin', 'ajax/admin.php')
|
|
->actionInclude('rainloop/ajax/admin.php');
|