BizDoc.Social.Monday
6.8.6
See the version list below for details.
dotnet add package BizDoc.Social.Monday --version 6.8.6
NuGet\Install-Package BizDoc.Social.Monday -Version 6.8.6
<PackageReference Include="BizDoc.Social.Monday" Version="6.8.6" />
paket add BizDoc.Social.Monday --version 6.8.6
#r "nuget: BizDoc.Social.Monday, 6.8.6"
// Install BizDoc.Social.Monday as a Cake Addin #addin nuget:?package=BizDoc.Social.Monday&version=6.8.6 // Install BizDoc.Social.Monday as a Cake Tool #tool nuget:?package=BizDoc.Social.Monday&version=6.8.6
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 | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
-
net6.0
- GraphQL.Client (>= 5.1.0)
- GraphQL.Client.Serializer.SystemTextJson (>= 5.1.0)
- Microsoft.AspNetCore.Authentication.Cookies (>= 2.2.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 6.0.10)
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 6.0.10)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.