Update CODEOWNERS and team names in TODO comments (#9460)

* Update CODEOWNERS

* Update teams in TODO comments

* Remove mentions of team cool
This commit is contained in:
Michael Kohl 2020-07-24 12:17:20 +07:00 committed by GitHub
parent fdedaa83cf
commit 8425c847c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 46 additions and 48 deletions

64
.github/CODEOWNERS vendored
View file

@ -2,36 +2,34 @@
# see https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
# for further details
/*.md @thepracticaldev/oss
/app/assets/stylesheets/internal/ @thepracticaldev/snackcase
/app/controllers/articles_controller.rb @thepracticaldev/hells-bells
/app/controllers/internal/ @thepracticaldev/snackcase
/app/services/notifications/ @thepracticaldev/delightful
/app/controllers/notifications/ @thepracticaldev/delightful
/app/workers/notifications/ @thepracticaldev/delightful
/app/controllers/internal/broadcasts_controller.rb @thepracticaldev/delightful
/app/controllers/async_info_controller.rb @thepracticaldev/sre
/app/controllers/pages_controller.rb @thepracticaldev/cool
/app/controllers/stories_controller.rb @thepracticaldev/hells-bells
/app/services/search/ @thepracticaldev/sre
/app/views/articles/ @thepracticaldev/hells-bells
/app/views/internal/ @thepracticaldev/snackcase
/app/views/moderation/ @thepracticaldev/snackcase
/app/views/notifications/ @thepracticaldev/delightful
/app/views/partnerships/ @thepracticaldev/cool
/app/views/stories/ @thepracticaldev/hells-bells
/app/workers/ @thepracticaldev/sre
/config/ @thepracticaldev/sre
/db/ @thepracticaldev/sre
/docs/ @thepracticaldev/oss @jacobherrington
/lib/data_update_scripts/ @thepracticaldev/sre
/lib/sidekiq/ @thepracticaldev/sre
/spec/rails_helper.rb @thepracticaldev/sre
/spec/requests/internal/ @thepracticaldev/snackcase
/spec/support/ @thepracticaldev/sre
/spec/system/internal/ @thepracticaldev/snackcase
Gemfile @thepracticaldev/sre @thepracticaldev/oss
Gemfile.lock @thepracticaldev/sre @thepracticaldev/oss
package.json @thepracticaldev/oss @nickytonline
yarn.lock @thepracticaldev/oss @nickytonline
.travis.yml @thepracticaldev/sre
/*.md @forem/oss
/app/assets/stylesheets/internal/ @forem/snackcase
/app/controllers/articles_controller.rb @forem/hells-bells
/app/controllers/internal/ @forem/snackcase
/app/services/notifications/ @forem/delightful
/app/controllers/notifications/ @forem/delightful
/app/workers/notifications/ @forem/delightful
/app/controllers/internal/broadcasts_controller.rb @forem/delightful
/app/controllers/async_info_controller.rb @forem/sre
/app/controllers/stories_controller.rb @forem/hells-bells
/app/services/search/ @forem/sre
/app/views/articles/ @forem/hells-bells
/app/views/internal/ @forem/snackcase
/app/views/moderation/ @forem/snackcase
/app/views/notifications/ @forem/delightful
/app/views/stories/ @forem/hells-bells
/app/workers/ @forem/sre
/config/ @forem/sre
/db/ @forem/sre
/docs/ @forem/oss @jacobherrington
/lib/data_update_scripts/ @forem/sre
/lib/sidekiq/ @forem/sre
/spec/rails_helper.rb @forem/sre
/spec/requests/internal/ @forem/snackcase
/spec/support/ @forem/sre
/spec/system/internal/ @forem/snackcase
Gemfile @forem/sre @forem/oss
Gemfile.lock @forem/sre @forem/oss
package.json @forem/oss @nickytonline
yarn.lock @forem/oss @nickytonline
.travis.yml @forem/sre

View file

@ -1,4 +1,4 @@
// TODO: [@thepracticaldev/delightful]: Refactor nesting in this file
// TODO: [@forem/delightful]: Refactor nesting in this file
// in addition to notifications.scss so that the nesting is
// not as deep as it currently is
.notifications-index {

View file

@ -28,7 +28,7 @@
}
}
}
// TODO: [@thepracticaldev/delightful]: Remove .signup-cue-advanced and .sloan
// TODO: [@forem/delightful]: Remove .signup-cue-advanced and .sloan
// from stylesheet since it does not appear to be used anywhere
.signup-cue-advanced {
text-align: left;

View file

@ -12,7 +12,7 @@ module ListingsToolkit
end
def update_listing_details
# [thepracticaldev/oss] Not entirely sure what the intention behind the
# [@forem/oss] Not entirely sure what the intention behind the
# original code was, but at least this is more compact.
filtered_params = listing_params.reject { |_k, v| v.nil? }
@listing.update(filtered_params)

View file

@ -27,7 +27,7 @@ class DisplayAd < ApplicationRecord
markdown = Redcarpet::Markdown.new(renderer)
initial_html = markdown.render(body_markdown)
# Temporarily disable the sanitisation in order to launch the SheCoded Campaign.
# TODO: [@thepracticaldev/cool] find an alternate solution.
# TODO: find an alternate solution.
# stripped_html = ActionController::Base.helpers.sanitize initial_html,
# tags: %w[a em i b u br img h1 h2 h3 h4 div style],

View file

@ -18,7 +18,7 @@ class Identity < ApplicationRecord
identity.user_id_changed? || identity.provider_changed?
}
# TODO: [thepracticaldev/oss] should this be transitioned to JSON?
# TODO: [@forem/oss] should this be transitioned to JSON?
serialize :auth_data_dump
# Builds an identity from OmniAuth's authentication payload

View file

@ -1,5 +1,5 @@
module Authentication
# TODO: [thepracticaldev/oss] use strategy pattern for the three cases
# TODO: [@forem/oss] use strategy pattern for the three cases
# described below.
# Make the decision early which one of the 3 cases we're dealing with
# and then call either NewUserStrategy, UpdateUserStrategy or

View file

@ -32,7 +32,7 @@ module Authentication
end
# Returns enabled providers
# TODO: [thepracticaldev/oss] ideally this should be "available - disabled"
# TODO: [@forem/oss] ideally this should be "available - disabled"
# we can get there once we have feature flags
def self.enabled
SiteConfig.authentication_providers.map(&:to_sym).sort

View file

@ -16,7 +16,7 @@ module UserSubscriptions
@source_id = user_subscription_params[:source_id]
@response = Response.new(success: false)
# TODO: [@thepracticaldev/delightful]: uncomment this once email confirmation is re-enabled
# TODO: [@forem/delightful]: uncomment this once email confirmation is re-enabled
# @subscriber_email = user_subscription_params[:subscriber_email]
end
@ -26,7 +26,7 @@ module UserSubscriptions
source = source_type.constantize.find_by(id: source_id)
return response if invalid_source?(source)
# TODO: [@thepracticaldev/delightful]: uncomment this once email confirmation is re-enabled
# TODO: [@forem/delightful]: uncomment this once email confirmation is re-enabled
# return response if subscriber_email_mismatch?
user_subscription = source.build_user_subscription(user)

View file

@ -9,7 +9,7 @@
<a href=<%= @source.path %>><%= @source.title %></a>
</h2>
</div>
<%#TODO: [@thepracticaldev/delightful]: uncomment this when ready to implement CSV exports%>
<%#TODO: [@forem/delightful]: uncomment this when ready to implement CSV exports%>
<%#<button type="button" class="crayons-btn crayons-btn--secondary">Export CSV</button>%>
</header>

View file

@ -29,7 +29,7 @@
const target = event.target;
const { parentElement: { id: title }, text } = target;
// TODO: [@thepracticaldev/delightful]: This event doesn't appear to be firing on Honeybadger.
// TODO: [@forem/delightful]: This event doesn't appear to be firing on Honeybadger.
// We probably want to remove it eventually if we continually don't see it being triggered.
if (!title) {
Honeybadger.notify(`Could not find parentElement.id when clicking on event target text: ${text}`);

View file

@ -141,7 +141,7 @@ RSpec.describe UserSubscriptionTag, type: :liquid_tag do
end
end
# TODO: [@thepracticaldev/delightful]: re-enable this once email confirmation
# TODO: [@forem/delightful]: re-enable this once email confirmation
# is re-enabled and confirm it isn't flaky.
xcontext "when a user has an Apple private relay email address", type: :system, js: true do
it "prompts the user to update their email address" do

View file

@ -518,7 +518,7 @@ RSpec.describe "/listings", type: :request do
end
end
# TODO: [thepracticaldev/oss] We used to have 2 request spec files, listing_spec.rb
# TODO: [@forem/oss] We used to have 2 request spec files, listing_spec.rb
# and classified_listing_spec.rb. This context contains the specs of the former,
# but we should eventually unify them into one set to remove some redundancy.
context "when running the specs that were previously in another file" do

View file

@ -130,7 +130,7 @@ RSpec.describe "UserSubscriptions", type: :request do
expect(response.parsed_body["error"]).to include("Subscriber has already been taken")
end
# TODO: [@thepracticaldev/delightful]: re-enable this once email confirmation is re-enabled
# TODO: [@forem/delightful]: re-enable this once email confirmation is re-enabled
xit "returns an error for an email mismatch" do
article = create(:article, :with_user_subscription_tag_role_user, with_user_subscription_tag: true)
invalid_source_attributes = { source_type: article.class_name, source_id: article.id,

View file

@ -25,7 +25,7 @@ RSpec.describe UserSubscriptions::CreateFromControllerParams, type: :service do
expect(user_subscription.error).to eq "Source not found."
end
# TODO: [@thepracticaldev/delightful]: re-enable this once email confirmation is re-enabled
# TODO: [@forem/delightful]: re-enable this once email confirmation is re-enabled
xit "returns an error for an email mismatch" do
source = create(:article, :with_user_subscription_tag_role_user, with_user_subscription_tag: true)
user_subscription_params = { source_type: source.class.name, source_id: source.id,