mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-06 19:35:13 +02:00
8 lines
174 B
Ruby
8 lines
174 B
Ruby
class ProjectsController < ApplicationController
|
|||
def archive
|
|||
ids = params[:ids]
|
|||
require_membership!(ids[0], current_user)
|
|||
ProjectArchive.archive(ids)
|
|||
end
|
|||
end
|