#ActivityPub 1 hashtag

NexusSfan

Some things I didn't know about #ActivityPub.

def actor_type(actor)
      icon =
        if actor
          case actor.type.split("::").last
          when "Person"
            "user"
          when "Group"
            "users"
          when "Organization"
            "university"
          when "Service"
            "plug"
          when "Application"
            "laptop"
          else
            "user"
          end
        else
          "user"
        end

I wonder how to configure this, and if other servers (not just #Ktistec) support it