mirror of
https://github.com/discourse/discourse-data-explorer.git
synced 2025-03-09 13:24:53 +00:00
Adds the ability for non-Admin users to bookmark Queries from inside Group > Reports > Query view.
13 lines
241 B
Ruby
13 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DataExplorer
|
|
class QueryGroup < ActiveRecord::Base
|
|
self.table_name = 'data_explorer_query_groups'
|
|
|
|
belongs_to :query
|
|
belongs_to :group
|
|
|
|
has_many :bookmarks, as: :bookmarkable
|
|
end
|
|
end
|