BizDoc.Social.Monday
7.1.0
See the version list below for details.
dotnet add package BizDoc.Social.Monday --version 7.1.0
NuGet\Install-Package BizDoc.Social.Monday -Version 7.1.0
<PackageReference Include="BizDoc.Social.Monday" Version="7.1.0" />
paket add BizDoc.Social.Monday --version 7.1.0
#r "nuget: BizDoc.Social.Monday, 7.1.0"
// Install BizDoc.Social.Monday as a Cake Addin #addin nuget:?package=BizDoc.Social.Monday&version=7.1.0 // Install BizDoc.Social.Monday as a Cake Tool #tool nuget:?package=BizDoc.Social.Monday&version=7.1.0
Monday for BizDoc
BizDoc extension for Monday enable interacting with BizDoc components embedded into Monday.com user interface:
Setup
- Install Nuget:
dotnet add package BizDoc.Core.Monday
- Create Monday app.
Add me.read
, users.read
, teams.read
scopes. Set redirect uri to server.
Use ngrok for development.
- Configure service in startup.cs
builder.Services.AddBizDoc(...).
AddMonday(options => {
options.ApiKey = "api-key-here";
options.BoardId = (context) => ...;
options.GroupId = (context) => ...;
options.ClientId = "client-id-here";
options.ClientSecret = "client-secret-here";
}).
UseIdentityProvider();
...
app.UseBizDoc().
UseMonday();
Replace the client-id, client-secret and api-key above with those of your Monday app.
If you wish to implement a custom Identity Provider, replace the UseIdentityProvider() with AddBizDoc().UseIdentityProvider<MyProvider>() and implement your provider as MyProvider.
- Setup page urls.
MondayService
Utilize MondayService
service to create an Item in Monday.
public class MyForm : FormBase<MyFormModel> {
private readonly MondayService _service;
private readonly IDocumentContext _context;
public MyForm(MondayService service, IDocumentContext context) {
_service = service;
_context = context;
}
public override Task CreateAsync(MyFormModel model) {
_service.CreateItemAsync(_context.Document.Id, model.Subject);
}
}
Call ChangeItemStateAsync() and UpdateItemAsync() to to change state or add an update.
Configuration
Teams data source.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- GraphQL.Client (>= 6.0.0)
- GraphQL.Client.Serializer.SystemTextJson (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.