1
0
Fork 0
forked from gitea/nas

Merge remote-tracking branch 'parent/main' into upstream-20240813

This commit is contained in:
KMY 2024-08-13 07:01:38 +09:00
commit e7ccc0539f
358 changed files with 4653 additions and 4261 deletions

View file

@ -60,19 +60,19 @@ module StatusesHelper
def fa_visibility_icon(status)
case status.visibility
when 'public'
fa_icon 'globe fw'
material_symbol 'globe'
when 'unlisted'
fa_icon 'unlock fw'
material_symbol 'lock_open'
when 'public_unlisted'
fa_icon 'cloud fw'
material_symbol 'cloud'
when 'login'
fa_icon 'key fw'
material_symbol 'key'
when 'private'
fa_icon 'lock fw'
material_symbol 'lock'
when 'limited'
fa_icon 'get-pocket fw'
material_symbol 'shield'
when 'direct'
fa_icon 'at fw'
material_symbol 'alternate_email'
end
end