Ist es möglich, alle Benutzer mit einer Signatur anzuzeigen?

We would like to check the user’s signatures manually and we would like to see who has an active signature so we can check that.

Any suggestions?

Thanks

1 „Gefällt mir“

You can probably use data explorer for that :slight_smile:

3 „Gefällt mir“

I think they’re in the user_custom_fields table, so a super simple one would be something like:

SELECT *
FROM user_custom_fields
WHERE name = 'signature_url'
2 „Gefällt mir“

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.