[NEW] pad_hedgedoc_connector: create addon

This commit is contained in:
Stéphan Sainléger
2022-08-09 23:02:58 +02:00
parent fb525f95d9
commit 5f2adcbc91
13 changed files with 316 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
from odoo import models, fields, api, _
class HedgedocPad(models.Model):
_name = "hedgedoc.pad"
_description = "Hedgedoc Pad"
name = fields.Char(string=_("Title"), required=True,)
url = fields.Char(string=_("URL"))