I created a community here, and then tried to follow it from my Mastodon account. On Mastodon it says the follow request is pending approval. But I don’t see any way to approve it from here on lemmy.ml. Any suggestions?

  • poVoq@slrpnk.net
    link
    fedilink
    English
    arrow-up
    8
    ·
    2 years ago

    I think that’s somehow a bug. On Lemmy it also sometimes shows “pending subscription”. Normally communities do not need approval and automatically allow all subscriptions.

    Try cancelling the follow request and make a new one.

  • baronvonjOP
    link
    fedilink
    English
    arrow-up
    5
    ·
    2 years ago

    Also, as a mod, how can I see who are the subscribers to the community?

    • Beto@lemmy.studio
      link
      fedilink
      English
      arrow-up
      5
      ·
      2 years ago

      You can query your DB with something like:

      $ docker exec -it lemmystudio_postgres_1 bash
      # psql -U lemmy lemmy
      lemmy=# SELECT person.actor_id, community.actor_id
      FROM community_follower
      JOIN person ON person_id = person.id
      JOIN community ON community_id = community.id
      ORDER BY person.actor_id;
      

      This gives you the users and communities they’re subscribed to.

      • baronvonjOP
        link
        fedilink
        English
        arrow-up
        4
        ·
        2 years ago

        Thanks, but I’m just a user here on lemmy.ml, so I don’t have access to that. If it’s not exposed in the UI at all I’ll open an issue over in GitHub.