def toggle_visible
        begin
            share = Share.find params[:id]
            share.visible = ! share.visible
            share.save