Old versions of attachments

Zeynep Donmezoglu June 8, 2014

How can we disable to install old versions of attachments in file lists? I want them reachable only by the creator of the space.

2 answers

0 votes
Davin Studer
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 8, 2014

If you want it to show for certain people you could add JavaScript into the custom html section in Confluence to conditionally set some CSS to hide the link to expand the file list. Granted that if someone wanted to go thorugh the page source they could still see it, but your average user wouldn't know how to do that. The CSS you would need is ...

.attachment-history {display: none;}

Here is some JS code that could do the trick.

AJS.toInit(function(){
	var user;

	switch(AJS.Meta.get("space-key"))
	{
		case "DEV":
			user = "jdoe";
			break;
		case "HR":
			user = "jschmoe";
			break;
		case "DOC":
			user = "bgates";
			break;
	}

	hideHistoryIfNot(user);
});

function hideHistoryIfNot(user) {
	if(AJS.Meta.get("remote-user") !== user) {
		AJS.$(".attachment-history").css("display", "none");
	}
}

0 votes
Deividi Luvison
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 8, 2014

Hi Zeynep,

Could you pelase clarify your question so we can better assist you?

What you need to disable?

What you mean by old version of attachments file lists?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events