blob: 3c02cedb5b0ad716ef590a693a0614e49e5b3002 (
plain)
1
2
3
4
5
6
7
8
9
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class GamificationBadge(models.Model):
_name = 'gamification.badge'
_inherit = ['gamification.badge', 'website.published.mixin']
|