Skip to content

Commit

Permalink
v1.2
Browse files Browse the repository at this point in the history
build
  • Loading branch information
WdBly committed Feb 8, 2018
1 parent 030ee84 commit 317a9ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/app/Http/Controllers/v1/BasicController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ class BasicController extends Controller
{
public function __construct()
{
$this->middleware('check_login')->except(['login','getArticleClass','getArticleList','getArticleContent']);
$this->middleware('check_login')->except(['login','logout','getArticleClass','getArticleList','getArticleContent']);
}
}
2 changes: 1 addition & 1 deletion server/app/Http/Model/ArticleClassification.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ArticleClassification extends Model
{
protected $table = 'articleClassification';
protected $table = 'articleclassification';

public function addArticleClass($data)
{
Expand Down
2 changes: 1 addition & 1 deletion server/app/Http/Model/ArticleTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class ArticleTags extends Model
{
protected $table = 'articleTags';
protected $table = 'articletags';

public function addArticleTags($data)
{
Expand Down

0 comments on commit 317a9ae

Please sign in to comment.