diff --git a/insta_feed_snippet/models/insta_post.py b/insta_feed_snippet/models/insta_post.py index caf4bcd5b..d1d20f3d0 100644 --- a/insta_feed_snippet/models/insta_post.py +++ b/insta_feed_snippet/models/insta_post.py @@ -6,6 +6,7 @@ from odoo.exceptions import UserError class InstaPost(models.Model): _name = 'insta.post' + _description = 'Instagram Post' name = fields.Char(string="Media ID") caption = fields.Char("Caption") diff --git a/insta_feed_snippet/models/insta_profile.py b/insta_feed_snippet/models/insta_profile.py index ebf589fd1..66b9d2d5f 100644 --- a/insta_feed_snippet/models/insta_profile.py +++ b/insta_feed_snippet/models/insta_profile.py @@ -7,6 +7,7 @@ from odoo.exceptions import UserError class InstaProfile(models.Model): _name = 'insta.profile' + _description = 'Instagram Profile' name = fields.Char(string="Name", readonly=True) access_token = fields.Char("Access Token")