Look and feel colour codes

Roshan Surana July 25, 2016

Where does JIRA stores look and feel colour codes?

1 answer

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 25, 2016

In the database, which you should not touch.

Propertyentry if you want to read them.

crf
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 25, 2016

At the lowest level, this is correct, but I would not recommend accessing the property entry directly if the intent is to do this from code.

To find them in the database where they happen to live today:

SELECT pe.property_key, ps.propertyvalue
    FROM propertyentry pe
    INNER JOIN propertystring ps ON pe.id = ps.id
    WHERE entity_name = 'jira.properties'
    AND property_key LIKE 'com.atlassian.jira.lookandfeel:%';

 

If you want to do this from code, you should step out two layers, skipping over SAL's PluginSettings to land at LookAndFeelProperties, the outward facing API that is actually provided for external access to them.

Suggest an answer

Log in or Sign up to answer