Browse Source

Merge 0d0ae53b82 into 176879978b

pull/278/merge
Markus Kirch 1 year ago
committed by GitHub
parent
commit
570d042f08
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      insta_feed_snippet/models/insta_post.py
  2. 1
      insta_feed_snippet/models/insta_profile.py

1
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")

1
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")

Loading…
Cancel
Save