17 lines
467 B
Python
17 lines
467 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
|
||
|
from flectra import api, fields, models
|
||
|
from flectra.osv import expression
|
||
|
|
||
|
|
||
|
class IrHttp(models.AbstractModel):
|
||
|
_inherit = 'ir.http'
|
||
|
|
||
|
@classmethod
|
||
|
def _get_translation_frontend_modules_domain(cls):
|
||
|
domain = super(IrHttp, cls)._get_translation_frontend_modules_domain()
|
||
|
return expression.OR([domain, [('name', '=', 'portal')]])
|
||
|
|