[hg] galaxy 1679: Add security to reports app, fixes reports.
details: http://www.bx.psu.edu/hg/galaxy/rev/48f3b242c75e changeset: 1679:48f3b242c75e user: Greg Von Kuster <greg@bx.psu.edu> date: Fri Dec 19 09:53:32 2008 -0500 description: Add security to reports app, fixes reports. 1 file(s) affected in this change: lib/galaxy/webapps/reports/app.py diffs (18 lines): diff -r c0efda325046 -r 48f3b242c75e lib/galaxy/webapps/reports/app.py --- a/lib/galaxy/webapps/reports/app.py Thu Dec 18 16:35:26 2008 -0500 +++ b/lib/galaxy/webapps/reports/app.py Fri Dec 19 09:53:32 2008 -0500 @@ -1,5 +1,6 @@ import sys, config import galaxy.model +from galaxy.web import security class UniverseApplication( object ): """Encapsulates the state of a Universe application""" @@ -19,5 +20,7 @@ db_url, self.config.database_engine_options, create_tables = True ) + # Security helper + self.security = security.SecurityHelper( id_secret=self.config.id_secret ) def shutdown( self ): pass
participants (1)
-
Greg Von Kuster