mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 00:38:04 +08:00
14 lines
385 B
PHP
14 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');
|