diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-03-30 13:53:14 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-03-30 13:53:14 -0700 |
commit | 59b6cd30e621ffeba55f23012e3ede42a4905e78 (patch) | |
tree | 97b78844e8b7db3f82f4e14b350a3ad32436d442 /modules/rest/models/user_access_key.php | |
parent | 7f175ea87e9567817d34729dec83f7f36509b894 (diff) |
Rename "user_access_tokens" table to "user_access_keys" as step 1 of a
multi step process to refer to REST access keys as "access_key"
everywhere. Bump the rest module to version 2.
Diffstat (limited to 'modules/rest/models/user_access_key.php')
-rw-r--r-- | modules/rest/models/user_access_key.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/rest/models/user_access_key.php b/modules/rest/models/user_access_key.php new file mode 100644 index 00000000..1da0f5eb --- /dev/null +++ b/modules/rest/models/user_access_key.php @@ -0,0 +1,21 @@ +<?php defined("SYSPATH") or die("No direct script access."); +/** + * Gallery - a web based photo album viewer and editor + * Copyright (C) 2000-2010 Bharat Mediratta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + */ +class User_Access_Key_Model extends ORM { +} |