Allow user to edit and delete their own pics
dudo
Joined: 2012-09-10
Posts: 7 |
![]() |
is it possible? I'd like that user can edit just their own pics (and not someone else's ones) |
|
suprsidr
![]()
Joined: 2005-04-17
Posts: 8339 |
![]() |
Give them each their own album to which they have full rights. |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
For speed, code complexity, upgrade-ability and other considerations, we went with a per album permissions approach and not a per item. Dave |
|
dudo
Joined: 2012-09-10
Posts: 7 |
![]() |
Thank you for your answers. Can i do it? Best Regards, |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
Quote:
(I would like to hide "album options"). see if adding this: <script type="text/javascript"> $(document).ready(function(){ $('li > a:contains("<?= t('Album options') ?>")').remove(); //removes the top menu action $('li > a:contains("<?= t('Organize album') ?>")').remove(); //remove the action from under the albums thumb $('li > a:contains("<?= t('Edit this album') ?>")').remove(); // removes the action from under the albums thumb }); </script> to the bottom of the page.html.php of your theme does as expected and report back. Dave |
|
dudo
Joined: 2012-09-10
Posts: 7 |
![]() |
Quote:
If it works as expected I can add it to the remove actions module. It worked like a charm! |
|
alloyphoto1
![]()
Joined: 2011-05-13
Posts: 7 |
![]() |
The problem I am seeing with permission is that album owners have no implicit access to their own albums. Isn't this kind of backwards? Shouldn't albums owners have default rights to modify their own albums? Or, at the very least, shouldn't there be an option to grant the owner permissions without having to create an extra group? I think this severely impedes the ability to use the Gallery in a real multiuser environment. What do you think? |
|
floridave
![]()
Joined: 2003-12-22
Posts: 27300 |
![]() |
Yes we think that permissions should be improved but time resources and skills are at a premium so groups is the way to go at this time. Dave _____________________________________________ |
|
alloyphoto1
![]()
Joined: 2011-05-13
Posts: 7 |
![]() |
I focus on G3 because it provides a decent REST API, and I use it to integrate with my Lightroom plugin (http://alloyphoto.com/plugins/gallery/). Using this plugin Lightroom users can manage their albums and photos directly from Lightroom, which many find a great convenience and a time saver. Oh well, I hope one day you'll find time to implement all feature requests Thanks! |
|
Tony Franco
Joined: 2013-03-06
Posts: 53 |
![]() |
Dear alloyphoto and All, that´s the point i saw there, to create a new group for every user.... a lot steps... Does have a solution for this?? Thanks and Regards, Tony alloyphoto1 wrote:
The problem I am seeing with permission is that album owners have no implicit access to their own albums. |
|