mirror of
https://github.com/owncloudarchive/contacts.git
synced 2025-01-19 08:52:22 +01:00
22 lines
419 B
PHP
22 lines
419 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @author Thomas Tanghus
|
||
|
* Copyright (c) 2013 Thomas Tanghus (thomas@tanghus.net)
|
||
|
* This file is licensed under the Affero General Public License version 3 or
|
||
|
* later.
|
||
|
* See the COPYING-README file.
|
||
|
*/
|
||
|
namespace OCA\Contacts;
|
||
|
|
||
|
//define the routes
|
||
|
//for the index
|
||
|
$this->create('contacts_index', '/')
|
||
|
->actionInclude('contacts/index.php');
|
||
|
// ->action(
|
||
|
// function($params){
|
||
|
// //
|
||
|
// }
|
||
|
// );
|
||
|
|
||
|
|