## 0.38.0

* Features
    * Header Tabs are now configurable view the GHA.json file. Will use defaults if none are found.
        NOTE: After changing these available headerTabs, you will need to re-build grasshopper admin.
              If you are adding only one additional, you will need to have them all in there. Just saying.

        They should look like:

        ```json
        [
            {
                "showWhenUserRoleIncludes" : "admin reader editor",
                "name" : "Content",
                "href" : "/items",
                "iconClasses" : "fa fa-th"
            },
            {
                "showWhenUserRoleIncludes" : "admin",
                "name" : "Types",
                "href" : "/content-types",
                "iconClasses" : "fa fa-cogs"
            },
            {
                "showWhenUserRoleIncludes" : "admin",
                "name" : "Users",
                "href" : "/users",
                "iconClasses" : "fa fa-user"
            },
            {
                "showWhenUserRoleIncludes" : "admin reader editor",
                "name" : "Advanced Search",
                "href" : "/advanced-search",
                "iconClasses" : "fa fa-search"
            },
            {
                "showWhenUserRoleIncludes" : "admin reader editor",
                "name" : "Info",
                "href" : "/info",
                "iconClasses" : "fa fa-info"
            },
            {
                "showWhenUserRoleIncludes" : "admin reader editor",
                "isSpacer" : "true"
            },
            {
                "showWhenUserRoleIncludes" : "admin reader editor",
                "name" : "Help",
                "href" : "/help",
                "iconClasses" : "fa fa-question"
            }
        ]
        ```
