10 lines
298 B
Ruby
10 lines
298 B
Ruby
# frozen_string_literal: true
|
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
|
class ActivitiesController < ApplicationController
|
|
before_action :authenticate_user!, only: [:create]
|
|
|
|
def create
|
|
json_saved Activity.create(params[:activity])
|
|
end
|
|
end
|