FEATURE: Let users select flair (#13587)

User flair was given by user's primary group. This PR separates the
two, adds a new field to the user model for flair group ID and users
can select their flair from user preferences now.
This commit is contained in:
Bianca Nenciu
2021-07-08 10:46:21 +03:00
committed by GitHub
parent c6f2459cc4
commit 87c1e98571
64 changed files with 625 additions and 326 deletions
@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddFlairGroupIdToUsers < ActiveRecord::Migration[6.1]
def change
add_column :users, :flair_group_id, :integer, null: true
end
end