save
This commit is contained in:
parent
739a4ab0c9
commit
fe00f904e7
|
@ -0,0 +1,5 @@
|
||||||
|
class Projects::Project::ProjectController < Projects::Project::BaseController
|
||||||
|
def index
|
||||||
|
console
|
||||||
|
end
|
||||||
|
end
|
|
@ -8,7 +8,6 @@ class Projects::ProjectsController < Projects::BaseController
|
||||||
def index
|
def index
|
||||||
authorize :project
|
authorize :project
|
||||||
@projects = ProjectPolicy::Scope.new(current_user, Project).membered.search(params[:search])
|
@projects = ProjectPolicy::Scope.new(current_user, Project).membered.search(params[:search])
|
||||||
console
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {
|
format.html {
|
||||||
@groups = current_user.groups
|
@groups = current_user.groups
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
hello world
|
Loading…
Reference in New Issue