Metadata-Version: 2.1
Name: eox-tenant
Version: 3.3.2
Summary: Edunext Open edx extensions tenant.
Home-page: UNKNOWN
Author: eduNEXT
Author-email: contact@edunext.co
License: AGPL
Description: 
        EOX tenant
        ----------
        
        EOX tenant migration notes
        --------------------------
        
        **Migrating from 0.* version to 1.0.0**
        
        From version **1.0.0**\ , middlewares **RedirectionsMiddleware** and **PathRedirectionMiddleware** are not longer supported in this plugin. These middlewares were moved to the **eox-core** plugin `here <https://github.com/eduNEXT/eox-core/>`_. From this, you can have three cases:
        
        
        #. You have already installed eox-core alongside eox-tenant. In this case you need to:
        
           * Upgrade eox-core to version **2.0.0** (previous releases are not compatible with eox-tenant 1.0.0)
           * Run the plugin migrations as indicated below:
             .. code-block::
        
                $ python manage.py lms migrate eox_tenant --settings=<your app settings>
                $ python manage.py lms migrate eox_core --fake-initial --settings=<your app settings>
        
        
           #. You only have installed eox-tenant and you want to keep the functionality the aforementioned middlewares offer. You need to:
        
        
           * Install eox-core version **2.0.0** as edx-platform requirement. You can use *Ansible* to add this plugin as an extra requirement.
        
        
        * Run the plugin migrations as indicated below:
          .. code-block::
        
             $ python manage.py lms migrate eox_tenant --settings=<your app settings>
             $ python manage.py lms migrate eox_core --fake-initial --settings=<your app settings>
        
        
        #. In the case your are not using the redirection middlewares, and only have eox-tenant installed, you can simply apply the database migrations for the eox-tenant plugin:
        
        .. code-block::
        
              $ python manage.py lms migrate eox_tenant --settings=<your app settings>
        
        The table corresponding to the Redirection model will not be deleted but it will be discarded from the Django state
        
        Commands
        ########
        
        Synchronize Organizations
        *************************
        This comand will synchronize the course_org_filter values in lms_configs(TenantConfig model) or values(Microsite model) with the TenantOrganization registers, if the organization does not existe, it will be create, otherwise it will be add to the organizations model field.
        
        
        .. code-block:: python
        
          ./manage.py lms synchronize_organizations  # only for TenantConfig and Microsite
          ./manage.py lms synchronize_organizations --model TenantConfig # only for TenantConfig
          ./manage.py lms synchronize_organizations --model Microsite # only for Microsite
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/x-rst
