Merging code updates (Unlisted Mode)
This commit is contained in:
		
						commit
						89dab7c534
					
				|  | @ -20,7 +20,7 @@ class Settings::ProfilesController < ApplicationController | ||||||
|   private |   private | ||||||
| 
 | 
 | ||||||
|   def account_params |   def account_params | ||||||
|     params.require(:account).permit(:display_name, :note, :avatar, :header) |     params.require(:account).permit(:display_name, :note, :avatar, :header, :silenced) | ||||||
|   end |   end | ||||||
| 
 | 
 | ||||||
|   def set_account |   def set_account | ||||||
|  |  | ||||||
|  | @ -24,8 +24,8 @@ class FanOutOnWriteService < BaseService | ||||||
|   def deliver_to_followers(status) |   def deliver_to_followers(status) | ||||||
|     Rails.logger.debug "Delivering status #{status.id} to followers" |     Rails.logger.debug "Delivering status #{status.id} to followers" | ||||||
| 
 | 
 | ||||||
|     status.account.followers.find_each do |follower| |     status.account.followers.where(domain: nil).find_each do |follower| | ||||||
|       next if !follower.local? || FeedManager.instance.filter?(:home, status, follower) |       next if FeedManager.instance.filter?(:home, status, follower) | ||||||
|       FeedManager.instance.push(:home, follower, status) |       FeedManager.instance.push(:home, follower, status) | ||||||
|     end |     end | ||||||
|   end |   end | ||||||
|  |  | ||||||
|  | @ -9,6 +9,7 @@ | ||||||
|     %link{:rel => "manifest", :href => "/manifest.json"}/ |     %link{:rel => "manifest", :href => "/manifest.json"}/ | ||||||
|     %meta{:name => "msapplication-config", :content => "/browserconfig.xml"}/ |     %meta{:name => "msapplication-config", :content => "/browserconfig.xml"}/ | ||||||
|     %meta{:name => "theme-color", :content => "#2b90d9"}/ |     %meta{:name => "theme-color", :content => "#2b90d9"}/ | ||||||
|  |     %meta{:name => "apple-mobile-web-app-capable", :content => "yes"}/ | ||||||
| 
 | 
 | ||||||
|     %title |     %title | ||||||
|       = "#{yield(:page_title)} - " if content_for?(:page_title) |       = "#{yield(:page_title)} - " if content_for?(:page_title) | ||||||
|  |  | ||||||
|  | @ -8,6 +8,7 @@ | ||||||
|   = f.input :note, placeholder: t('simple_form.labels.defaults.note') |   = f.input :note, placeholder: t('simple_form.labels.defaults.note') | ||||||
|   = f.input :avatar, wrapper: :with_label |   = f.input :avatar, wrapper: :with_label | ||||||
|   = f.input :header, wrapper: :with_label |   = f.input :header, wrapper: :with_label | ||||||
|  |   = f.input :silenced, as: :boolean, wrapper: :with_label | ||||||
| 
 | 
 | ||||||
|   .actions |   .actions | ||||||
|     = f.button :button, t('generic.save_changes'), type: :submit |     = f.button :button, t('generic.save_changes'), type: :submit | ||||||
|  |  | ||||||
|  | @ -13,6 +13,7 @@ Rails.application.configure do | ||||||
|   # Full error reports are disabled and caching is turned on. |   # Full error reports are disabled and caching is turned on. | ||||||
|   config.consider_all_requests_local       = false |   config.consider_all_requests_local       = false | ||||||
|   config.action_controller.perform_caching = true |   config.action_controller.perform_caching = true | ||||||
|  |   config.action_controller.asset_host      = ENV['CDN_HOST'] | ||||||
| 
 | 
 | ||||||
|   # Disable serving static files from the `/public` folder by default since |   # Disable serving static files from the `/public` folder by default since | ||||||
|   # Apache or NGINX already handles this. |   # Apache or NGINX already handles this. | ||||||
|  |  | ||||||
|  | @ -15,6 +15,7 @@ de: | ||||||
|         note: Über mich |         note: Über mich | ||||||
|         password: Passwort |         password: Passwort | ||||||
|         username: Nutzername |         username: Nutzername | ||||||
|  |         silenced: Öffentliche Beiträge nicht auflisten | ||||||
|       notification_emails: |       notification_emails: | ||||||
|         favourite: E-mail senden, wenn jemand meinen Beitrag favorisiert |         favourite: E-mail senden, wenn jemand meinen Beitrag favorisiert | ||||||
|         follow: E-mail senden, wenn mir jemand folgt |         follow: E-mail senden, wenn mir jemand folgt | ||||||
|  |  | ||||||
|  | @ -15,6 +15,7 @@ en: | ||||||
|         note: Bio |         note: Bio | ||||||
|         password: Password |         password: Password | ||||||
|         username: Username |         username: Username | ||||||
|  |         silenced: Unlisted mode | ||||||
|       notification_emails: |       notification_emails: | ||||||
|         favourite: Send e-mail when someone favourites your status |         favourite: Send e-mail when someone favourites your status | ||||||
|         follow: Send e-mail when someone follows you |         follow: Send e-mail when someone follows you | ||||||
|  |  | ||||||
|  | @ -15,6 +15,7 @@ es: | ||||||
|         note: Biografía |         note: Biografía | ||||||
|         password: Contraseña |         password: Contraseña | ||||||
|         username: Nombre de usuario |         username: Nombre de usuario | ||||||
|  |         silenced: No listado | ||||||
|       notification_emails: |       notification_emails: | ||||||
|         favourite: Enviar correo electrónico cuando alguien de a favorito en su publicación |         favourite: Enviar correo electrónico cuando alguien de a favorito en su publicación | ||||||
|         follow: Enviar correo electrónico cuando alguien le siga |         follow: Enviar correo electrónico cuando alguien le siga | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue