horizon/openstack_dashboard/dashboards/admin/roles
Radomir Dopieralski b7537a8b81 Use memoized_method decorator in views
A lot of horizon's views use the pattern:

    def get_data(self):
        if not hasattr(self, "_data"):
            # Calculate data here.
            self._data = data
        return self._data

This is copy-pasted all over the codebase. It's better to handle that
with a single decorator. In the future, we might even replace it with
some better caching approach.

Closes-bug: #1248230
Change-Id: Id021fccf9032e5068993ec91a7774a5d0fbf29bb
2013-12-18 16:46:30 +01:00
..
templates/roles Adding CRUD for roles 2013-05-24 09:07:54 -06:00
__init__.py Adding CRUD for roles 2013-05-24 09:07:54 -06:00
forms.py Enable H302 check 2013-08-22 17:39:09 +04:00
panel.py Small "H302 check" cleanup 2013-08-23 18:07:08 +04:00
tables.py Gate on H4xx docstrings for pep8 2013-11-23 12:51:07 -05:00
tests.py Enable H302 check 2013-08-22 17:39:09 +04:00
urls.py Fix django.conf.urls.defaults imports 2013-11-04 17:10:57 +11:00
views.py Use memoized_method decorator in views 2013-12-18 16:46:30 +01:00