FriendsOfFlarum Social Profile
[deleted]
Pollux I still can't add a mail address: The url format is invalid.
mailto:adress@email.com
option doesn't work either... The url format is invalid.
[deleted] mailto:adress@email.com option doesn't work either...
Well, that's what I tried first and which I expected to work. But I also tried the address without protocol.
The problem here is the validation of the url
field. In this extension, we validate the input is infact a url:
'url' => ['url', 'max:120', 'required']
Because mailto:a@b.c
won't pass validation as a url, then you get the error you describe.
The only way around this I can think of right now would be to create a custom validation rule that would pass either a url or valid email address. Then there's the extra issue that we actually don't just want a valid email address, but a valid mailto
instead.
Perhaps a regex pattern might be the way to go here. I'll give it some thought, but also open to any other thoughts/comments/ideas too.
1.0.0
- Flarum 1.0
I've not been able to address IanM just yet, but have opened an issue here FriendsOfFlarum/socialprofile20 so that it does not get lost. I'm focussing on getting as many FoF extensions ready for the Flarum 1.0 release as soon as possible, but we will re-visit again soon
I can’t click on the SNS icons using a tablet (iPad). Is this normal? Works on my phone but both use Safari
- Edited
Can someone from FOF review this PR? FriendsOfFlarum/socialprofile24
It fixes a lot of problems, and has been pending for days.
Darkle did u check permission?
Justoverclock Everything has administrator permissions, but now reading it I think the problem is that there are no permissions for this extension Can anyone confirm this?
Darkle yep, now I see that there are no permission
I suggest adding permissions to allow specific groups only to have a social profile.
Any news on this loading icons from a remote tracking location?
See: FriendsOfFlarum/socialprofile22
rant this is really my main annoyance with the Flarum ecosystem... too much careless drive-by user-tracking and GDPR violations build into extensions. rant
[deleted]
poVoq rant this is really my main annoyance with the Flarum ecosystem... too much careless drive-by user-tracking and GDPR violations build into extensions. rant
This is unfortunately a common theme - it's not just the Flarum ecosystem. WordPress does this all the time. Not great for privacy, but in fairness to developers, their job is to deliver a stable framework, and the privacy aspect is our concern.
1.1.0
- Fix styling issues in dark mode (FriendsOfFlarum/social-profile23, FriendsOfFlarum/social-profile24)
- Add option to prevent using external favicons (FriendsOfFlarum/social-profile22, poVoq)
- Add permissions & remove delete modal
- Mods (or whoever) can just use the same edit modal
- Clean up some styles
- Change link to sites to be
<a>
withnoopener
,nofollow
,noreferrer
- Might want to update simply because of this... current version uses
window.open
- Might want to update simply because of this... current version uses
Thanks @rafaucau for his work that I saw too late, but still implemented based of his changes.
Thanks a lot for including the GDPR friendly option!