mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
cb5b0cb9d8
It allows saving local date to calendar. Modal is giving option to pick between ics and google. User choice can be remembered as a default for the next actions.
9 lines
265 B
Ruby
9 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDefaultCalendarToUserOptions < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :user_options, :default_calendar, :integer, default: 0, null: false
|
|
add_index :user_options, [:user_id, :default_calendar]
|
|
end
|
|
end
|