mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
Add developer_id to safari_extensions
This commit is contained in:
parent
1e27791cf3
commit
a48109a226
@ -50,6 +50,7 @@ const std::map<std::string, std::string> kSafariExtensionKeys = {
|
||||
{"CFBundleInfoDictionaryVersion", "sdk"},
|
||||
{"Description", "description"},
|
||||
{"Update Manifest URL", "update_url"},
|
||||
{"DeveloperIdentifier", "developer_id"},
|
||||
};
|
||||
|
||||
void genBrowserPlugin(const std::string& uid,
|
||||
|
@ -9,6 +9,7 @@ schema([
|
||||
Column("sdk", TEXT, "Bundle SDK used to compile extension"),
|
||||
Column("update_url", TEXT, "Extension-supplied update URI"),
|
||||
Column("author", TEXT, "Optional extension author"),
|
||||
Column("developer_id", TEXT, "Optional developer identifier"),
|
||||
Column("description", TEXT, "Optional extension description text"),
|
||||
Column("path", TEXT, "Path to extension XAR bundle"),
|
||||
ForeignKey(column="uid", table="users")
|
||||
|
Loading…
Reference in New Issue
Block a user