From c6e619e15a176af0aa065070c1af272e6e40e12d Mon Sep 17 00:00:00 2001 From: Reena Singh <45616864+ReenaSingh07@users.noreply.github.com> Date: Fri, 13 Sep 2024 17:34:08 +0530 Subject: [PATCH] fix(Hero image): preload image link (#473) --- package-lock.json | 2 +- package.json | 2 +- src/atoms/image/image.tsx | 25 +- src/atoms/image/types.ts | 1 + src/helpers/image-helpers/image-helpers.ts | 11 +- .../__snapshots__/date-updated.test.tsx.snap | 2 +- src/molecules/header-card/header-card.tsx | 2 +- src/molecules/hero-image/hero-image.tsx | 11 +- src/molecules/hero-image/types.ts | 2 + .../related-story-card.test.tsx.snap | 1 + .../related-story-card/related-story-card.tsx | 10 +- .../__snapshots__/generic-story.test.tsx.snap | 3189 +++++++++++++++++ src/templates/generic-story/generic-story.tsx | 2 +- .../live-blog.validation.test.tsx.snap | 3189 +++++++++++++++++ src/templates/live-blog/live-blog.tsx | 2 +- src/types/config.ts | 1 + 16 files changed, 6429 insertions(+), 23 deletions(-) diff --git a/package-lock.json b/package-lock.json index 16b6261d..cd17b533 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@quintype/amp", - "version": "2.19.1", + "version": "2.19.2-fix-img-preload.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 0ec30986..9e6fbbd9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quintype/amp", - "version": "2.19.1", + "version": "2.19.2-fix-img-preload.3", "description": "Quintype's AMP component library for publisher apps to create amp layouts", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/atoms/image/image.tsx b/src/atoms/image/image.tsx index 06af968e..97aac0bd 100644 --- a/src/atoms/image/image.tsx +++ b/src/atoms/image/image.tsx @@ -5,6 +5,7 @@ import { withConfig } from "../../context"; import { LightboxGallery } from "../lightbox-gallery"; import { base64FallbackImage } from "../../helpers/image-helpers"; import { Head } from "../index"; +import get from "lodash.get"; export const BaseImage = ({ metadata, @@ -16,6 +17,7 @@ export const BaseImage = ({ lightbox = true, story, useFallbackImage = false, + disableImgPreload = false, ...rest }: ImageTypes) => { const cdnImage = config.publisherConfig["cdn-image"]; @@ -42,20 +44,35 @@ export const BaseImage = ({ imgAttrs.alt = "fallback image"; } if (!imgAttrs.src) return null; - imgAttrs.layout = "responsive"; imgAttrs.width = imgAspectRatio[0]; imgAttrs.height = imgAspectRatio[1]; + const isHeroImage: boolean = get(imgAttrs, ["data-hero"], "false") === "true"; + const imgSrcSet = get(imgAttrs, ["srcset"]); + const imgSrcSetUrl = imgSrcSet?.split(" ")?.[0]; + const imgSrc = imgSrcSetUrl || get(imgAttrs, ["src"]); + return ( - - + + ) : ( + + - + + )} {lightbox ? ( diff --git a/src/atoms/image/types.ts b/src/atoms/image/types.ts index 6d1b376a..fb178f93 100644 --- a/src/atoms/image/types.ts +++ b/src/atoms/image/types.ts @@ -12,6 +12,7 @@ export interface ImageTypes extends Common { lightbox?: string | boolean; useFallbackImage?: boolean; story?: Story; + disableImgPreload?: boolean; } interface ImageMetadata { diff --git a/src/helpers/image-helpers/image-helpers.ts b/src/helpers/image-helpers/image-helpers.ts index be4ce51b..0d50912c 100644 --- a/src/helpers/image-helpers/image-helpers.ts +++ b/src/helpers/image-helpers/image-helpers.ts @@ -6,14 +6,9 @@ export const getImgSrcAndSrcset = ({ opts, slug, metadata, aspectRatio, cdnImage const imgOpts = isGumlet ? { format: "auto", ...opts } : opts; const src = focusedImagePath({ opts: imgOpts, slug, metadata, aspectRatio, cdnImage }); let srcset = ""; - const srcsetOpts = [{ ...imgOpts, w: 640 }]; - srcsetOpts.forEach((val, i) => { - if (i === srcsetOpts.length - 1) { - srcset += `${focusedImagePath({ opts: val, slug, metadata, aspectRatio, cdnImage })} ${val.w}w`; - } else { - srcset += `${focusedImagePath({ opts: val, slug, metadata, aspectRatio, cdnImage })} ${val.w}w, `; - } - }); + const srcsetOpt = { ...imgOpts, w: 640 }; + srcset += `${focusedImagePath({ opts: srcsetOpt, slug, metadata, aspectRatio, cdnImage })} ${srcsetOpt.w}w`; + return { src, srcset }; }; diff --git a/src/molecules/date/updated/__snapshots__/date-updated.test.tsx.snap b/src/molecules/date/updated/__snapshots__/date-updated.test.tsx.snap index c540345b..7dceb22b 100644 --- a/src/molecules/date/updated/__snapshots__/date-updated.test.tsx.snap +++ b/src/molecules/date/updated/__snapshots__/date-updated.test.tsx.snap @@ -2,7 +2,7 @@ exports[`DateUpdated should match snapshot 1`] = ` `; diff --git a/src/molecules/header-card/header-card.tsx b/src/molecules/header-card/header-card.tsx index 22a73f64..a6361f6b 100644 --- a/src/molecules/header-card/header-card.tsx +++ b/src/molecules/header-card/header-card.tsx @@ -43,7 +43,7 @@ export const DefaultHeaderCard = ({ story, config, storyType }: HeaderCardProps) return (
- +
diff --git a/src/molecules/hero-image/hero-image.tsx b/src/molecules/hero-image/hero-image.tsx index e9375c42..6da1b526 100644 --- a/src/molecules/hero-image/hero-image.tsx +++ b/src/molecules/hero-image/hero-image.tsx @@ -27,7 +27,7 @@ const StyledFigcaption = styled.div` text-align: left; padding-top: 8px; `; -export const HeroImageBase = ({ story }: HeroImageBaseTypes) => { +export const HeroImageBase = ({ story, config }: HeroImageBaseTypes) => { const metadata: HeroImageMetadata = get(story, "hero-image-metadata", null); const slug: string | null = get(story, "hero-image-s3-key", null); if (!slug || !metadata) return null; @@ -35,12 +35,17 @@ export const HeroImageBase = ({ story }: HeroImageBaseTypes) => { const attribution: string | null = get(story, "hero-image-attribution", null); const caption: string | null = get(story, "hero-image-caption", null); const altText: string | null = get(story, "hero-image-alt-text", null); - + const disableImgPreload: boolean = get(config, ["opts", "optimizeAmpHtml"], true); return ( <> - {altText + {altText {caption && } diff --git a/src/molecules/hero-image/types.ts b/src/molecules/hero-image/types.ts index d1d3b9ce..61f6a7dc 100644 --- a/src/molecules/hero-image/types.ts +++ b/src/molecules/hero-image/types.ts @@ -1,4 +1,6 @@ +import { Config } from "../../types/config"; import { Story } from "../../types/story"; export interface HeroImageBaseTypes { story: Story; + config?: Config; } diff --git a/src/molecules/related-story-card/__snapshots__/related-story-card.test.tsx.snap b/src/molecules/related-story-card/__snapshots__/related-story-card.test.tsx.snap index 4a8e856e..fa398b9a 100644 --- a/src/molecules/related-story-card/__snapshots__/related-story-card.test.tsx.snap +++ b/src/molecules/related-story-card/__snapshots__/related-story-card.test.tsx.snap @@ -7,6 +7,7 @@ exports[`RelatedStoryCard should render default 1`] = ` > { }); } } - + const disableImgPreload: boolean = get(config, ["opts", "optimizeAmpHtml"], true); return ( - {imgAltText + {imgAltText {headline} diff --git a/src/templates/generic-story/__snapshots__/generic-story.test.tsx.snap b/src/templates/generic-story/__snapshots__/generic-story.test.tsx.snap index 4e8fb108..573a4e33 100644 --- a/src/templates/generic-story/__snapshots__/generic-story.test.tsx.snap +++ b/src/templates/generic-story/__snapshots__/generic-story.test.tsx.snap @@ -4168,6 +4168,3195 @@ exports[`GenericStory Template should render 1`] = ` /> The Supreme Court today pronounced its judgment detailing the reasons for ordering a floor test in the Madhya Pradesh Legislative Assembly, in view of the recent political crisis in the state [Shivraj Singh Chouhan v. Speaker, Madhya Pradesh Legislative Assembly].

", + "title": "", + "type": "text", + }, + ], + "version": 17, + }, + Object { + "card-added-at": 1586768274836, + "card-updated-at": 1586771733373, + "content-id": "69938439-efdf-47cb-8a22-e137de7e1203", + "content-version-id": "01e0db3a-41af-4cc2-b763-913e2f1adaf4", + "id": "69938439-efdf-47cb-8a22-e137de7e1203", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "eed6d9d0-1fcd-45f1-9a13-013351e94b38", + "id": "70c4126f-b3df-4809-8bac-15146e5c6496", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/70c4126f-b3df-4809-8bac-15146e5c6496", + "subtype": null, + "text": "

The political crisis, triggered by the resignation of 22 members of the Congress party in Madhya Pradesh, was brought to an end after the Supreme Court directed for a floor test on March 19.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a80b93ca-254d-4a8b-958d-00548dd8687f", + "id": "9c846f50-83ff-44c2-8f60-66c42e0cbe42", + "metadata": Object { + "linked-story": Object { + "headline": "[Breaking] Madhya Pradesh Political Crisis: Supreme Court directs Floor Test to be held on March 20", + "highlighted-headline": null, + "highlighted-text": "", + "id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + "story-content-id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + }, + "linked-story-id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9c846f50-83ff-44c2-8f60-66c42e0cbe42", + "subtype": "also-read", + "text": "[Breaking] Madhya Pradesh Political Crisis: Supreme Court directs Floor Test to be held on March 20", + "title": "", + "type": "text", + }, + ], + "version": 15, + }, + Object { + "card-added-at": 1586769147391, + "card-updated-at": 1586771733373, + "content-id": "8e000f11-e872-4883-bc68-8b93ce55d19e", + "content-version-id": "1d5531b8-e064-4e23-abfd-717774ee0165", + "id": "8e000f11-e872-4883-bc68-8b93ce55d19e", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "82f3f817-4274-4754-982c-905c54586354", + "id": "272b53da-c30a-4242-9bd2-28062e09c970", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/272b53da-c30a-4242-9bd2-28062e09c970", + "subtype": null, + "text": "

By way of background, after the ex-Congress legislators were “taken captive”, BJP leaders approached the Speaker of the Assembly on March 10 and tendered the resignation letters of the captive MLAs

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ea2fb1a9-ca34-489a-9c4f-fd3b3c97c755", + "id": "bc70d169-8f9c-416b-9f43-1ffeace15a73", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bc70d169-8f9c-416b-9f43-1ffeace15a73", + "subtype": null, + "text": "

Then Chief Minister Kamal Nath, on March 13, addressed a letter to Governor Lalji Tandon, offering to hold a floor test once the MLAs are released. The Congress then issued a whip to ensure the presence of all its members at the budget session of the state assembly which was to commence on March 16.

Governor Tandon then sent a letter to Nath, urging him to gain the trust vote on the floor of the House.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "10a4af81-a19a-47cc-b043-807ada946bb7", + "id": "9a0c0623-88ae-4a13-ae04-6a53454998d3", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9a0c0623-88ae-4a13-ae04-6a53454998d3", + "subtype": null, + "text": "

When the session commenced on March 16, the MLAs belonging to the Madhya Pradesh Congress were absent. The Governor once again wrote to the CM, asking him to hold the trust vote on March 17.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9f25aa21-54c7-4ba9-880e-b931adc2c0c0", + "id": "07c034f9-7b67-460b-b8f2-092c4b33fb0e", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/07c034f9-7b67-460b-b8f2-092c4b33fb0e", + "subtype": null, + "text": "

Meanwhile, BJP MLAs from Madhya Pradesh moved the Supreme Court seeking a direction to conduct a floor test in the state assembly.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "13968fe1-2485-43b6-8b4e-066dd1bed00a", + "id": "260c2762-f42d-43b6-81fe-7e0edf20ddef", + "metadata": Object { + "linked-story": Object { + "headline": "Breaking: BJP leaders file petition in Supreme Court calling for Floor Test in Madhya Pradesh Assembly", + "highlighted-headline": null, + "highlighted-text": "", + "id": "4411e926-6322-453c-9996-3e05c7cadba0", + "story-content-id": "4411e926-6322-453c-9996-3e05c7cadba0", + }, + "linked-story-id": "4411e926-6322-453c-9996-3e05c7cadba0", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/260c2762-f42d-43b6-81fe-7e0edf20ddef", + "subtype": "also-read", + "text": "Breaking: BJP leaders file petition in Supreme Court calling for Floor Test in Madhya Pradesh Assembly", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a6848e7-5eab-44c4-a2b1-4613f5263156", + "id": "c4a6a195-5e53-48ea-9068-890fcde32b3b", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c4a6a195-5e53-48ea-9068-890fcde32b3b", + "subtype": null, + "text": "

Around the same time, the MP Congress to approach the Supreme Court, challenging the Governor's direction to hold a floor test.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9c2334a2-1963-42ef-9744-ea810500edce", + "id": "db48483c-f1b2-40ab-8725-0a9c3150f9a3", + "metadata": Object { + "linked-story": Object { + "headline": "Trust Vote can't be held in absence of captive MLAs: Madhya Pradesh Congress moves SC against Governor's direction to hold floor test", + "highlighted-headline": null, + "highlighted-text": "", + "id": "018860ae-536c-4a2a-9793-de42ad850fb0", + "story-content-id": "018860ae-536c-4a2a-9793-de42ad850fb0", + }, + "linked-story-id": "018860ae-536c-4a2a-9793-de42ad850fb0", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/db48483c-f1b2-40ab-8725-0a9c3150f9a3", + "subtype": "also-read", + "text": "Trust Vote can't be held in absence of captive MLAs: Madhya Pradesh Congress moves SC against Governor's direction to hold floor test", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7e5336de-28c1-42f2-be06-34d00bb9818e", + "id": "9cc7a6fb-a01c-4d6a-a660-a25a94bf12c5", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9cc7a6fb-a01c-4d6a-a660-a25a94bf12c5", + "subtype": null, + "text": "

After hearing the matter for three days, the Court directed for a floor test to be held.

", + "title": "", + "type": "text", + }, + ], + "version": 7, + }, + Object { + "card-added-at": 1586769388600, + "card-updated-at": 1586771733373, + "content-id": "dee9946a-8a3c-4199-b974-a4e972c314b9", + "content-version-id": "6ddbb6b6-c06d-443e-9ab8-59c5ecb0b8b7", + "id": "dee9946a-8a3c-4199-b974-a4e972c314b9", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "d99a708e-80f2-4088-a0b6-cf8efa603a51", + "id": "a5bbec81-b810-445c-9161-57a6c84dc8e0", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/a5bbec81-b810-445c-9161-57a6c84dc8e0", + "subtype": null, + "text": "

In today's judgment passed by the Bench of Justices DY Chandrachud and Hemant Gupta, a number of issues surrounding the crisis are addressed. These include the powers of the Governor and the Speaker, as well as the trend of defection being seen in various states.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ad271167-8b4e-4d4d-8695-ec1796f5a5c4", + "id": "187a111e-d42d-462a-b43e-1d9e21a2708c", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/187a111e-d42d-462a-b43e-1d9e21a2708c", + "subtype": null, + "text": "

Powers of the Governor

The primary issue before the Court was whether the Governor is entrusted with the authority to call for a trust vote in the course of a running assembly.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e87f2511-4b55-448d-b816-cd5037b8d5ce", + "id": "d1f6ca53-36be-476d-8625-a2c1b956de76", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d1f6ca53-36be-476d-8625-a2c1b956de76", + "subtype": null, + "text": "

At the outset, the Court dismissed warnings that it should not enter the realm of politics by adjudicating on such issues.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "c7221449-8688-488c-98d8-8748e9bfbbf4", + "id": "01685c09-42f1-451e-bc94-1ec1249e7c65", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/01685c09-42f1-451e-bc94-1ec1249e7c65", + "subtype": null, + "text": "

\\"As the ultimate arbiter of the constitutional text, this Court is tasked with ensuring that each branch of government operates within the limits placed upon it by the Constitution, including in the realm of democratic politics…

...Merely because the prima facie determination made by the Governor was of the political support enjoyed by the incumbent government or the action demanded was a political process (the floor test) is not a reason for this Court not to hear the matter.\\"

", + "title": "", + "type": "text", + }, + ], + "version": 3, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "cb2866dd-99dc-462a-98a2-f29bd3af9c7c", + "content-version-id": "053c823a-5a9d-4480-9a1c-5ac76a7b892c", + "id": "cb2866dd-99dc-462a-98a2-f29bd3af9c7c", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "89f41557-c1b1-47c6-9bf7-49ce08180b95", + "id": "a8d5245b-cb1b-494e-8f5d-6d1c5200b091", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/a8d5245b-cb1b-494e-8f5d-6d1c5200b091", + "subtype": null, + "text": "

The Court went on to note that the question of whether a Governor can call for a trust vote in an already constituted legislative assembly is not entirely res integra. After referring to the Suprmee Court's decision in SR Bommai v. Union of India, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e1675f96-3f49-466e-9b4c-52be266bb2bf", + "id": "bceac042-9e97-4a38-a10b-daeb9741cf3e", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"As a matter of constitutional law, it would not be correct to proceed on the basis that the constitutional authority entrusted to the Governor to require the Council of Ministers to prove their majority on the floor of the House can only be exercised at the very inception after general elections are held and not when the Governor has objective reasons to believe that the incumbent government does not command the confidence of the house. The Governor is not denuded of the power to order a floor test where on the basis of the material available to the Governor it becomes evident that the issue as to whether the government commands the confidence of the house requires to be assessed on the basis of a floor test.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bceac042-9e97-4a38-a10b-daeb9741cf3e", + "subtype": "quote", + "text": "
\\"As a matter of constitutional law, it would not be correct to proceed on the basis that the constitutional authority entrusted to the Governor to require the Council of Ministers to prove their majority on the floor of the House can only be exercised at the very inception after general elections are held and not when the Governor has objective reasons to believe that the incumbent government does not command the confidence of the house. The Governor is not denuded of the power to order a floor test where on the basis of the material available to the Governor it becomes evident that the issue as to whether the government commands the confidence of the house requires to be assessed on the basis of a floor test.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "b1279481-04ab-47ae-9c9b-da9e29bc4a0c", + "id": "d8b2d0e1-4d51-4834-bbfd-fd1442006b57", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d8b2d0e1-4d51-4834-bbfd-fd1442006b57", + "subtype": null, + "text": "

The Bench further warned that entrusting such a function to the Governor is not to destabilise an existing government, and that such a decision would be amenable to judicial review.

It also called for circumspection on the part of the Governor while calling for a floor test.

\\"In exercising the constitutional authority to demand a trust vote, the Governor must do so with circumspection in a manner that ensures that the authority of the House to determine the existence or loss of confidence in the government is not undermined. Absent exigent and compelling circumstances, there is no reason for the Governor to prevent the ordinary legislative process of a no confidence motion from running its due course.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "302bdf3a-e2dc-4094-9ce6-740510d7afbd", + "id": "c4f2d283-33bf-41a5-a695-7bfe0868fe0f", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c4f2d283-33bf-41a5-a695-7bfe0868fe0f", + "subtype": null, + "text": "

The Court went on to detail what is expected of the role of the Governor.

\\"The Governor is an appointee of the President but does not represent either a political ideology or a political view. The Governor is expected to discharge the role of a constitutional statesman. The authority of the Governor is not one to be exercised in aid of a political dispensation which considers an elected government of the day to be a political opponent.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "684f8954-c837-47e8-8bbf-b871c0b677cc", + "id": "14ab0504-f0c1-4b0f-82a5-1fbb7bf5f891", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/14ab0504-f0c1-4b0f-82a5-1fbb7bf5f891", + "subtype": null, + "text": "

Moreover, it noted that the Governor's powers should not be used to destabilise governments.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "86c85786-68a1-40cc-9af4-c63b2ba14b4c", + "id": "2af9b57b-6dbe-49ce-95cb-7ea846ca7571", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"In discharging this crucial role, it is necessary that the Governor bear in mind that the purpose underlying the entrustment of the authority to require a trust vote is not to displace duly elected governments but to intervene with caution when the circumstances which are drawn to the attention of the Governor indicate a loss of majority. This power is granted to the Governor to ensure that the principle of collective responsibility is maintained at all times and must be exercised with caution.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2af9b57b-6dbe-49ce-95cb-7ea846ca7571", + "subtype": "quote", + "text": "
\\"In discharging this crucial role, it is necessary that the Governor bear in mind that the purpose underlying the entrustment of the authority to require a trust vote is not to displace duly elected governments but to intervene with caution when the circumstances which are drawn to the attention of the Governor indicate a loss of majority. This power is granted to the Governor to ensure that the principle of collective responsibility is maintained at all times and must be exercised with caution.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "50e753f5-22cf-4857-a4ff-6bb6a94ac49d", + "content-version-id": "5ed2c0cb-e510-40f4-9619-ea7781d7da6a", + "id": "50e753f5-22cf-4857-a4ff-6bb6a94ac49d", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "b076b6e1-5de6-47a7-8887-a9bcb503f0d9", + "id": "bae057f8-0fdc-48aa-aa06-416d1e92f2ea", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bae057f8-0fdc-48aa-aa06-416d1e92f2ea", + "subtype": null, + "text": "

With regard to the present case, the Court ruled that in view of the resignation of the 22 MLAs (which were accepted by the Speaker) and the Chief Minster's refusal to conduct a floor test on March 16, the Governor was justified in calling for a floor test to be conducted.

Referring to earlier instances where the Court has ordered floor tests to be conducted in various states, the Court said,

\\"...with the communication of the Governor for convening a trust vote immediately after the Governor‘s address, the session of the Legislative Assembly was adjourned till 26 March 2020 despite the House having already convened. This would have allowed the state of political uncertainty in Madhya Pradesh to continue and furnish avenues for political bargaining on terms which cannot be regarded as legitimate. It is with a view to obviate illegitimate and unseemly political bargaining in the quest for political power that this Court has consistently insisted upon the convening of a trust vote at the earliest date.\\"

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "886931a6-7d7e-482b-9623-e4ce11bd0f6b", + "content-version-id": "a595f84e-272b-4ead-b745-62ca755a6d3b", + "id": "886931a6-7d7e-482b-9623-e4ce11bd0f6b", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "", + "caption": null, + "key": "barandbench/2020-03/75a79c28-cd62-4cda-a1de-d8daa8ccb818/AM_singhivi.jpg", + "metadata": Object { + "height": 350, + "width": 700, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "58782846-a21f-40fa-9cf2-2449e4f4bb45", + "id": "2f12a425-4f65-48df-acac-cd47d9852756", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2f12a425-4f65-48df-acac-cd47d9852756", + "subtype": null, + "text": "

Speaker's discretion v. Governor's prerogative

The Court went on to deliberate on the argument forwarded by Senior Advocate Abhishek Manu Singhvi that convening a trust vote at this stage will impinge on the discretion of the Speaker to determine whether the resignations should be accepted.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a8955c85-44e3-4e6e-9af9-b03b51a5205e", + "id": "84a9c9f9-dec4-4b2e-b48b-ba67bffad217", + "metadata": Object { + "linked-story": Object { + "headline": "Madhya Pradesh Political Crisis: How does Court ensure that there is free exercise of choice by MLAs? SC adjourns matter to tomorrow", + "highlighted-headline": null, + "highlighted-text": "", + "id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + "story-content-id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + }, + "linked-story-id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/84a9c9f9-dec4-4b2e-b48b-ba67bffad217", + "subtype": "also-read", + "text": "Madhya Pradesh Political Crisis: How does Court ensure that there is free exercise of choice by MLAs? SC adjourns matter to tomorrow", + "title": "", + "type": "text", + }, + Object { + "alt-text": "Alt text", + "description": "", + "family-id": "e4162d62-0912-455f-b3e8-724dc7bbbec7", + "id": "2f687e61-5706-48bf-a732-f84345380941", + "image-attribution": "", + "image-metadata": Object { + "height": 350, + "width": 700, + }, + "image-s3-key": "barandbench/2020-03/75a79c28-cd62-4cda-a1de-d8daa8ccb818/AM_singhivi.jpg", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2f687e61-5706-48bf-a732-f84345380941", + "subtype": null, + "title": "Senior Advocate AM Singhvi", + "type": "image", + }, + Object { + "description": "", + "family-id": "0e8c883a-b0b3-44be-b234-90460fe7a24c", + "id": "2853f865-3cbe-487e-a082-2d09c29b2c41", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2853f865-3cbe-487e-a082-2d09c29b2c41", + "subtype": null, + "text": "

In this regard, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a7c4b300-546b-4595-9785-55fb02f160d5", + "id": "b23d6125-a55f-41ca-aeee-7dcee773dfde", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"The holding of a trust vote operates in a distinct field from the issue as to whether one or more individual members of the Legislative Assembly have embarked upon a voluntary act of resignation or have incurred the wrath of the Tenth Schedule...the pendency of the proceedings before the Speaker cannot be a valid basis to not have the confidence of the House in the government determined by the convening of a floor test.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/b23d6125-a55f-41ca-aeee-7dcee773dfde", + "subtype": "quote", + "text": "
\\"The holding of a trust vote operates in a distinct field from the issue as to whether one or more individual members of the Legislative Assembly have embarked upon a voluntary act of resignation or have incurred the wrath of the Tenth Schedule...the pendency of the proceedings before the Speaker cannot be a valid basis to not have the confidence of the House in the government determined by the convening of a floor test.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e6d55d1d-8442-4a9e-9edb-a2e12e14c806", + "id": "c46cd78a-820a-4c52-a4c2-16423f8fe828", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c46cd78a-820a-4c52-a4c2-16423f8fe828", + "subtype": null, + "text": "

The fact that the Speaker in the present case accepted the resignations tendered by six of the twenty-two members on March 14 weakened this argument, the Court said.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "5664b8be-20a3-4a25-97e3-b266a88dc052", + "content-version-id": "1db7c458-2de7-4b8c-b909-e0e45af5befe", + "id": "5664b8be-20a3-4a25-97e3-b266a88dc052", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "9dafe50d-3406-4ce6-b83d-61d8a2626a69", + "id": "d7bb93ee-1cc6-4cf2-a6c6-5a8bcc5a1c7e", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d7bb93ee-1cc6-4cf2-a6c6-5a8bcc5a1c7e", + "subtype": null, + "text": "

Fluid allegiances and Horse-trading

While making a reference to the often-fluid allegiances of democratically elected representatives, the Court refused to express an opinion on the same.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "5e274648-3de1-4f0c-8c20-3b449ed9f0b6", + "id": "de02504c-3e11-4cd7-968d-cf9571b03693", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/de02504c-3e11-4cd7-968d-cf9571b03693", + "subtype": null, + "text": "

Alluding to the trend of MLAs being held \\"captive\\", the Court said that if violence and coercion exist, it would undermine a free and fair vote in the assembly. The Governor and the Court must take measures to ensure that the sanctity of the trust vote is maintained, the Bench observed.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a66f7526-d40f-43ab-95a7-626a132ea526", + "id": "37ddcf98-fdc0-4d99-9013-412af112073a", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/37ddcf98-fdc0-4d99-9013-412af112073a", + "subtype": null, + "text": "

Commenting further on what has been termed as 'resort politics', the Court observed,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "c22a866a-d7f3-432b-8728-a754237fe366", + "id": "c135cd48-d799-4646-a295-12ce6204ff15", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"The spectacle of rival political parties whisking away their political flock to safe destinations does little credit to the state of our democratic politics. It is an unfortunate reflection on the confidence which political parties hold in their own constituents and a reflection of what happens in the real world of politics. Political bargaining, or horse-trading, as we noticed, is now an oft repeated usage in legal precedents. ̳Poaching‘ is an expression which was bandied about on both sides of the debate in the present case. It is best that courts maintain an arm‘s length from the sordid tales of political life.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c135cd48-d799-4646-a295-12ce6204ff15", + "subtype": "quote", + "text": "
\\"The spectacle of rival political parties whisking away their political flock to safe destinations does little credit to the state of our democratic politics. It is an unfortunate reflection on the confidence which political parties hold in their own constituents and a reflection of what happens in the real world of politics. Political bargaining, or horse-trading, as we noticed, is now an oft repeated usage in legal precedents. ̳Poaching‘ is an expression which was bandied about on both sides of the debate in the present case. It is best that courts maintain an arm‘s length from the sordid tales of political life.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "310b72e4-b5ae-447e-b81f-2caeec0d58ba", + "id": "095ab0c6-445d-4ffd-8d07-3c164cb6e439", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/095ab0c6-445d-4ffd-8d07-3c164cb6e439", + "subtype": null, + "text": "

Justice Chandrachud further called for legislation to deal with breakdown in the composition and allegiances of political parties due to private allurements offered to Members as opposed to public policy considerations.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "e3dbe86e-4e50-4172-83e4-9481a3d97ceb", + "content-version-id": "4d1eb488-dbfb-4a4d-b31a-613cfb998d35", + "id": "e3dbe86e-4e50-4172-83e4-9481a3d97ceb", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "bc4e1387-4b36-4ae6-9c52-de61926b7d93", + "id": "747600f2-fe4f-46be-a136-412a0ec9732b", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/747600f2-fe4f-46be-a136-412a0ec9732b", + "subtype": null, + "text": "

On these grounds and more, the Court decided to order the floor test on March 19.

Terming the reliefs sought by the Madhya Pradesh Congress as “manifestly misconceived”, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "178ff92f-ccc2-4bc0-b4e7-0de91a144634", + "id": "03653355-5d96-4f9e-88fa-80c2e8a15b10", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/03653355-5d96-4f9e-88fa-80c2e8a15b10", + "subtype": null, + "text": "

\\"The court cannot issue a direction mandating that a trust vote cannot be convened if any one or more Members do not remain present in the House. Whether or not to remain present is for the individual Members to decide and they would, necessarily be accountable for the decisions which they take, both to their political party and to their constituents.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8cbc915a-00f5-42a3-a115-b02ad956a3a7", + "id": "72a1546c-7c23-4b31-bcc2-b7f967358f25", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/72a1546c-7c23-4b31-bcc2-b7f967358f25", + "subtype": null, + "text": "

During the hearings held last month, Senior Advocate Mukul Rohtagi appeared for the BJP MLA petitioners. Senior Advocate Maninder Singh appeared for the rebel MLAs, and Solicitor General Tushar Mehta represented the Governor.

On the other side, Senior Advocate Dushyant Dave appeared for the Madhya Pradesh Congress petitioners, Senior Advocate Abhishek Manu Singhvi appeared for the Speaker, and the Senior Counsel Kapil Sibal represented former Chief Minister Kamal Nath.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "92f9a804-cd81-46a3-a3a7-6278bb25ac9d", + "id": "5d3f853a-f730-47ac-bd06-d02d24f438ee", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/5d3f853a-f730-47ac-bd06-d02d24f438ee", + "subtype": null, + "text": "

[Read the judgment]

", + "title": "", + "type": "text", + }, + Object { + "content-type": "application/pdf", + "description": "", + "family-id": "b38e8b10-7385-4478-bbd2-6439ec72a0c4", + "file-name": "Shivraj Singh Chouhan v. Speaker, Madhya Pradesh Legislative Assembly.pdf", + "id": "f05aeec6-e880-4b27-b43d-809aa750db81", + "metadata": Object { + "file-size": 726618, + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/f05aeec6-e880-4b27-b43d-809aa750db81", + "s3-key": "barandbench/2020-04/61c11c1b-112f-46e6-9127-0869107858e2/Shivraj_Singh_Chouhan_v__Speaker__Madhya_Pradesh_Legislative_Assembly.pdf", + "subtype": "attachment", + "title": "", + "type": "file", + "url": "https://images.assettype.com/barandbench/2020-04/61c11c1b-112f-46e6-9127-0869107858e2/Shivraj_Singh_Chouhan_v__Speaker__Madhya_Pradesh_Legislative_Assembly.pdf", + }, + ], + "version": 2, + }, + ], + "comments": null, + "content-created-at": 1586767854816, + "content-type": "story", + "content-updated-at": 1586779628547, + "contributors": null, + "created-at": 1586771733171, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779628383, + "headline": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": null, + "hero-image-metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "hero-image-s3-key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "id": "ecfc249c-a760-49b5-bfd6-485773ab14c6", + "last-published-at": 1586779628383, + "linked-entities": Array [], + "linked-story-ids": Array [ + "6066e82b-b09f-4157-b872-ed2a05c8821c", + "4411e926-6322-453c-9996-3e05c7cadba0", + "018860ae-536c-4a2a-9793-de42ad850fb0", + "d26ace08-65f1-45f9-8339-1c5787a09c3d", + ], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 708281, + "owner-name": "Aditya AK", + "publish-at": null, + "published-at": 1586779628383, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 7, + "sections": Array [ + Object { + "collection": Object { + "id": 29911, + "name": "News", + "slug": "news", + }, + "data": null, + "display-name": "News", + "domain-slug": null, + "id": 14017, + "name": "News", + "parent-id": null, + "section-url": "https://www.barandbench.com/news", + "slug": "news", + }, + Object { + "collection": Object { + "id": 29912, + "name": "Litigation News (News)", + "slug": "litigation-news", + }, + "data": null, + "display-name": "Litigation News", + "domain-slug": null, + "id": 14018, + "name": "Litigation News", + "parent-id": 14017, + "section-url": "https://www.barandbench.com/news/litigation", + "slug": "litigation", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "The Supreme Court pronounced its judgment detailing the reasons for ordering a floor test in the Madhya Pradesh Legislative Assembly back in March.", + "meta-keywords": Array [ + "Madhya Pradesh Political Crisis", + "Floor Test", + "Supreme Court", + "Governor", + "Rebel MLAs", + "Congress", + "BJP", + "Madhya Pradesh", + ], + "meta-title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + "sequence-no": null, + "slug": "news/governor-must-bear-in-mind-that-purpose-of-ordering-trust-vote-is-not-to-displace-governments-sc-on-madhya-pradesh-political-crisis", + "status": "published", + "story-content-id": "ecfc249c-a760-49b5-bfd6-485773ab14c6", + "story-template": "text", + "story-version-id": "466650f3-6f48-4ac6-8fc8-abd9b41840ff", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006337, + "meta-description": null, + "meta-title": null, + "name": "Supreme Court of India", + "slug": "supreme-court-of-india", + "tag-type": "Tag", + }, + Object { + "id": 2007028, + "meta-description": null, + "meta-title": null, + "name": "Floor Test", + "slug": "floor-test", + "tag-type": "Tag", + }, + Object { + "id": 2007042, + "meta-description": null, + "meta-title": null, + "name": "Governor", + "slug": "governor", + "tag-type": "Tag", + }, + Object { + "id": 2525136, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh Political Crisis", + "slug": "madhya-pradesh-political-crisis", + "tag-type": "Tag", + }, + Object { + "id": 2525783, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh Speaker", + "slug": "madhya-pradesh-speaker", + "tag-type": "Tag", + }, + Object { + "id": 2530865, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh floor test", + "slug": "madhya-pradesh-floor-test", + "tag-type": "Tag", + }, + ], + "updated-at": 1586779626444, + "url": "https://www.barandbench.com/news/governor-must-bear-in-mind-that-purpose-of-ordering-trust-vote-is-not-to-displace-governments-sc-on-madhya-pradesh-political-crisis", + "version": 20, + "votes": Object {}, + "word-count": 1694, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 741116, + "assignee-name": "Aishwarya Iyer", + "author-id": 712872, + "author-name": "Dushyant Dave", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 712872, + "name": "Dushyant Dave", + "slug": "dushyant-dave", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586772566483, + "card-updated-at": 1586772813646, + "content-id": "f93dcd3d-fa68-41dc-9e08-e3b0d321dd06", + "content-version-id": "58c7ee09-2b1a-4c60-8ccf-c719899b7afc", + "id": "f93dcd3d-fa68-41dc-9e08-e3b0d321dd06", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "dba40f09-6005-4ba8-86e9-4fe549cd9aa2", + "id": "8f6fcce8-d938-4c5c-930a-0d3334cdfacc", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/8f6fcce8-d938-4c5c-930a-0d3334cdfacc", + "subtype": null, + "text": "

India, in general, and the Legal World, in particular, became poorer with the passing away of Shri Ashok Desai, fondly called as Ashokbhai by all.

", + "title": "", + "type": "text", + }, + ], + "version": 8, + }, + Object { + "card-added-at": 1586772605361, + "card-updated-at": 1586772813646, + "content-id": "c13d6c73-72fd-4bf6-b3f0-94c4b0279af8", + "content-version-id": "6807af5a-754d-426f-9f98-f72bdfaf4fa3", + "id": "c13d6c73-72fd-4bf6-b3f0-94c4b0279af8", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "f0efc2ac-a39b-46d4-9a4e-fb5e4229c07a", + "id": "9be37a56-0cad-45b8-8df4-3a843b35ed26", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/9be37a56-0cad-45b8-8df4-3a843b35ed26", + "subtype": null, + "text": "

A Legend in Legal Circles, he was the former Attorney General of India, Solicitor General of India, and Advocate General of Maharashtra. As a Senior Advocate, he was par excellence and admired by all in the Legal World.

", + "title": "", + "type": "text", + }, + ], + "version": 7, + }, + Object { + "card-added-at": 1586772619119, + "card-updated-at": 1586772813646, + "content-id": "5798e447-5a56-4048-8ad1-a74080717fb7", + "content-version-id": "f0bf2169-aed5-4d40-ac0f-b849b65d1f0a", + "id": "5798e447-5a56-4048-8ad1-a74080717fb7", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "7cb4e7f5-b6e6-46b9-bd7d-fb117e45cf3e", + "id": "29041999-a367-41d5-a067-8ac5912523ef", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/29041999-a367-41d5-a067-8ac5912523ef", + "subtype": null, + "text": "

In more than one sense, Ashokbhai was a Spiritual Philosopher, possessed of unselfish Love, Chittshuddhi (cleansing of heart) and achieving Moral Upliftments of highest levels.

", + "title": "", + "type": "text", + }, + ], + "version": 6, + }, + Object { + "card-added-at": 1586772643954, + "card-updated-at": 1586772813646, + "content-id": "a7804778-824c-4a63-acd5-bc282627efb7", + "content-version-id": "1e16f6ba-a2a6-4340-b3ee-c9d1e1197720", + "id": "a7804778-824c-4a63-acd5-bc282627efb7", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "5edbc7d1-d315-4970-a428-55ab52e23273", + "id": "e58edafe-c7d5-47fd-9976-5c50374e97ac", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/e58edafe-c7d5-47fd-9976-5c50374e97ac", + "subtype": null, + "text": "

There are very few people in life one can come across like him- ever so smiling- ever so helpful- ever so kind- ever so loving.

", + "title": "", + "type": "text", + }, + ], + "version": 5, + }, + Object { + "card-added-at": 1586772643954, + "card-updated-at": 1586772813646, + "content-id": "9ba19f67-ba21-45e4-a302-c7c35720512b", + "content-version-id": "f633bc59-2385-46ae-b925-f584573b59e6", + "id": "9ba19f67-ba21-45e4-a302-c7c35720512b", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "7d183025-862a-4f7e-a921-11ca753ce123", + "id": "1b53a73e-1f6a-49a6-9d01-e6c777195c7d", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/1b53a73e-1f6a-49a6-9d01-e6c777195c7d", + "subtype": null, + "text": "

As a Lawyer, he was simply one of the most outstanding of all. Extraordinarily brilliant, very well prepared in Law and Facts, extremely polite to the Bench and to his opponents. Yet, with his fair presentation in a very soothing voice, he could win over both the Bench and the Bar. Also, as a human being, he was highly accomplished. Possessed of noble virtues derived from his great Parents, highly educated, extremely well read and well informed, and widely travelled, Ashokbhai was an intellectual of a very high order. A great speaker and a patient listener; that made him an extremely enjoyable conversationalist, full of wit and information. Evenings spent with him would be treasured for a life-time.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8fb3ff66-34e3-42a2-bab2-e882188ce33f", + "id": "a823f3f9-8349-4769-8a27-d6780ba32f34", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/a823f3f9-8349-4769-8a27-d6780ba32f34", + "subtype": null, + "text": "

He had a very deep love for humanity and the Nation. He never missed reminding all who knew him, as to what was right and what was wrong in Public Life. His observations and remarks were a good guide to understand the state of the Nation.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "2e856dc3-db55-4c06-8e01-8ace25a6a347", + "id": "5519c178-1e3d-42f1-9dec-620fdcc1ee87", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/5519c178-1e3d-42f1-9dec-620fdcc1ee87", + "subtype": null, + "text": "

His humour in such conversation was lethal and apt. He could regale Friends for hours with his stories from his life time’s experiences.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "0f0b8b20-a480-40a9-ac64-5f889aca382c", + "id": "5f339eb5-3743-4abb-ac37-6ed3f6d14baf", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/5f339eb5-3743-4abb-ac37-6ed3f6d14baf", + "subtype": null, + "text": "

Ashokbhai had a deep understanding of Religions and was highly spiritual. He followed tenets of Buddhism and practised them in his own life. His beliefs were never dogmatic or rigid, but were very moderate and humane.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "115d1082-7436-4f8f-981c-8c086fc5471e", + "id": "b6d69e02-4516-403b-b30c-6533433f6af5", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/b6d69e02-4516-403b-b30c-6533433f6af5", + "subtype": null, + "text": "

Ashokbhai’s life journey is a classic example of what was said once, “Do not seek death… Death will find you… But, seek the road which makes death fulfilment.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "195be843-d2bb-4996-9a9e-4f1bf2c204ac", + "id": "e41e190e-2381-4cd3-88c7-5c81676f555d", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/e41e190e-2381-4cd3-88c7-5c81676f555d", + "subtype": null, + "text": "

Ashokbhai passed away peacefully and gracefully, today morning. Even in Death, he chose the Buddhist Path of Renunciation. But, Ashokbhai will never be forgotten for all his Deeds. His life will be an example for generations to come.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a2e9302-b634-4e3d-95cc-5848b949633d", + "id": "4ab5ccdc-5d0e-4388-9d5a-193f674f2b5f", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/4ab5ccdc-5d0e-4388-9d5a-193f674f2b5f", + "subtype": null, + "text": "

He leaves behind his wife, Suvarnaben, also an accomplished human being in her own right and a true life-time partner, his sons, Jai and Harsh, daughter Ami, and grandchildren on whom he doted.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "60b42055-6a90-4a00-bb96-9ec4c4e0db9c", + "id": "554231fd-5cd6-4c43-9d90-836a7d13f45c", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/554231fd-5cd6-4c43-9d90-836a7d13f45c", + "subtype": null, + "text": "

He also leaves behind large number of Friends and Admirers who will never forget him for all that he gave them.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "603fe320-b7f3-4d18-b8ea-b6058febbd91", + "id": "cd3aae96-549a-417f-9035-a517190eda62", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/cd3aae96-549a-417f-9035-a517190eda62", + "subtype": null, + "text": "

For my wife Ami and me, Ashokbhai was a source of nourishment in our lives, and a constant Friend, Philosopher and Guide.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "da473ed7-071e-4bf8-a378-3b7eb4730a31", + "id": "07d1e6cb-ed75-43ce-96c9-91dba6ea47e8", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/07d1e6cb-ed75-43ce-96c9-91dba6ea47e8", + "subtype": null, + "text": "

As Tagore famously said, Ashokbhai’s, “Life was beautiful like summer flowers and death like autumn leaves.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a132a9e-6646-480c-af8b-56e8b4227f01", + "id": "0d0a2a93-2a74-424c-bdf8-b17c5c864dd5", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/0d0a2a93-2a74-424c-bdf8-b17c5c864dd5", + "subtype": null, + "text": "

May his soul Rest in Eternal Peace.

", + "title": "", + "type": "text", + }, + ], + "version": 5, + }, + ], + "comments": null, + "content-created-at": 1586772566479, + "content-type": "story", + "content-updated-at": 1586779427263, + "contributors": Array [], + "created-at": 1586775446476, + "custom-slug": "Homage to Ashok Desai!", + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779427147, + "headline": "The above image might either be blank or contain a fallback", + "hero-image-alt-text": null, + "hero-image-attribution": "Jaipur Lit Fest", + "hero-image-caption": "Ashok Desai", + "hero-image-metadata": null, + "hero-image-s3-key": null, + "id": "b554a23c-3a48-41bd-9e0a-4ab7aacb6f80", + "last-published-at": 1586779427147, + "linked-entities": Array [], + "linked-story-ids": Array [], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 741116, + "owner-name": "Aishwarya Iyer", + "publish-at": null, + "published-at": 1586779427147, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 2, + "sections": Array [ + Object { + "collection": Object { + "id": 29914, + "name": "Columns", + "slug": "columns", + }, + "data": null, + "display-name": "Columns", + "domain-slug": null, + "id": 14020, + "name": "Columns", + "parent-id": null, + "section-url": "https://www.barandbench.com/columns", + "slug": "columns", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "Dushyant Dave pens down his heartfelt homage to the former Attorney General of India.", + "meta-keywords": Array [ + "Ashok Desai", + ], + "meta-title": "Homage to Ashok Desai!", + }, + "sequence-no": null, + "slug": "columns/homage-to-ashok-desai", + "status": "published", + "story-content-id": "b554a23c-3a48-41bd-9e0a-4ab7aacb6f80", + "story-template": "text", + "story-version-id": "05132761-e379-4366-82f2-a3e8004d64d5", + "storyline-id": null, + "storyline-title": null, + "subheadline": "Dushyant Dave pens down his heartfelt homage to the former Attorney General of India.", + "summary": null, + "tags": Array [ + Object { + "id": 2008519, + "meta-description": null, + "meta-title": null, + "name": "Tribute", + "slug": "tribute", + "tag-type": "Tag", + }, + Object { + "id": 2017547, + "meta-description": null, + "meta-title": null, + "name": "Ashok Desai", + "slug": "ashok-desai", + "tag-type": "Tag", + }, + ], + "updated-at": 1586775473117, + "url": "https://www.barandbench.com/columns/homage-to-ashok-desai", + "version": 10, + "votes": Object {}, + "word-count": 501, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 708278, + "assignee-name": "Meera Emmanuel", + "author-id": 1269195, + "author-name": "Deepak Joshi", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 1269195, + "name": "Deepak Joshi", + "slug": "deepak-joshi", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586183543930, + "card-updated-at": 1586691056845, + "content-id": "16ac8c10-5089-4c19-93e9-053af705eae3", + "content-version-id": "480fc739-6eb8-44a0-a28d-3dfbf8825b95", + "id": "16ac8c10-5089-4c19-93e9-053af705eae3", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "NCLAT", + "key": "barandbench/import/2019/10/NCLAT-7.jpg", + "metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "14397fb8-87f8-4547-98d2-51e96e29a083", + "id": "2d73db20-39ec-4436-b483-db9b683f8f72", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/2d73db20-39ec-4436-b483-db9b683f8f72", + "subtype": null, + "text": "

A decision was recently rendered by a rare sitting of a five-member bench of the National Company Law Appellate Tribunal (NCLAT) in the matter of V Padmakumar v. Stressed Assets Stabilisation Fund (SASF) & Anr.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "08f0ab98-e52a-45fe-8612-ce3ce4947a34", + "id": "75f5a267-d822-4b47-bde3-6ede5ebaf1ab", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/75f5a267-d822-4b47-bde3-6ede5ebaf1ab", + "subtype": null, + "text": "

One of the ancillary issues which came to be considered was whether reflection of debt in the books of accounts tantamounts to acknowledgment of debt under Section 18 of the Limitation Act, 1963, and thereby extends the period of limitation.

", + "title": "", + "type": "text", + }, + ], + "version": 35, + }, + Object { + "card-added-at": 1586183543930, + "card-updated-at": 1586625918989, + "content-id": "a299ad0a-ed22-414e-ac08-6be64fb2ef02", + "content-version-id": "b1a77cbf-4d14-4d64-8273-41d254c6ebe6", + "id": "a299ad0a-ed22-414e-ac08-6be64fb2ef02", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "NCLAT", + "key": "barandbench/import/2019/10/NCLAT-7.jpg", + "metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "1d741c98-5ece-4082-aaf3-a1199a04087f", + "id": "d74476f9-3225-4930-8e8c-88ec9bf34d11", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/d74476f9-3225-4930-8e8c-88ec9bf34d11", + "subtype": null, + "text": "

The decision was not a unanimous one – it was a majority decision of 4:1. The majority concluded that the filing of balance sheet being mandatory under the Companies Act, 2013, it cannot be treated to be an acknowledgement under Section 18.

The dissent concludes that the recording of debt will be valid acknowledgment under Section 18. With respect, the author through this article, has attempted to conclude that it is in fact the dissent that is correct and should hold the field.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "214acbda-5ba7-4d8c-995c-1cd671a09762", + "id": "8e5eb517-5345-4a4f-8ace-e6bd8ca50d3c", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/8e5eb517-5345-4a4f-8ace-e6bd8ca50d3c", + "subtype": null, + "text": "Majority Decision", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "5c4d8010-bfd4-4e5c-813d-7fe2a6482f6f", + "id": "d8dc9422-c437-4328-ba97-81ca91b6f124", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/d8dc9422-c437-4328-ba97-81ca91b6f124", + "subtype": null, + "text": "

The decision of the majority can be summarised as follows:

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e74a8d66-b15d-4715-b278-6f1c6455d89f", + "id": "cfebd047-9d5f-43d1-9f7b-ead90d421d0b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/cfebd047-9d5f-43d1-9f7b-ead90d421d0b", + "subtype": null, + "text": "
  • Filing of Balance Sheet being mandatory under Section 92(4) of the Companies Act, the same cannot be treated to be an acknowledgement under Section 18 of the Limitation Act.

  • If the argument is accepted that the Balance Sheet of the ‘Corporate Debtor’ amounts to acknowledgement under Section 18 then in such case, it is to be held that no limitation would be applicable because every year, it is mandatory for the ‘Corporate Debtor’ to file Balance Sheet.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "d74655ed-530f-4350-a163-e917f4455fd7", + "id": "963914e7-1a9f-4e4c-850e-000112c26703", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/963914e7-1a9f-4e4c-850e-000112c26703", + "subtype": null, + "text": "Debt in Financial Statements - Accountancy and Law", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "44a0dfb7-349a-46fc-89a3-2b5f044116db", + "id": "e284f633-ee85-401d-a04d-a069a8d00e31", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/e284f633-ee85-401d-a04d-a069a8d00e31", + "subtype": null, + "text": "

Let us focus on few statutory and regulatory provisions pertaining to preparation of the financial statements.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "07cf1cf7-530f-4d4b-aa2d-be252c2842f8", + "id": "15c9f464-892d-48c2-8e24-0fb0b793a417", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/15c9f464-892d-48c2-8e24-0fb0b793a417", + "subtype": null, + "text": "

I. At the Stage of Preparation of Accounts

Section 128(1) of the Companies Act provides that every company shall prepare books of accounts and financial statements which give “true and fair view” of the state of the affairs of the company. Similarly, Section 129(1) mandates that the financial statements shall give a “true and fair view” of the state of affairs of the company and comply with the accounting standards notified under Section 133.

One of the accounting standards notified under Section 133 is Indian Accounting Standard – 1 (“Ind AS – 1”) which clearly provides that the financial statements shall present a true and fair view of the financial position, financial performance and cash flows of an entity with faithful representation of the effects of transactions.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "fedc3b44-6a4c-40d2-ace7-37c42a7f0768", + "id": "aa164961-eb30-4845-8cd2-2793716ec4fa", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/aa164961-eb30-4845-8cd2-2793716ec4fa", + "subtype": null, + "text": "

II. At the Stage of Auditing of Accounts

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "0feb918c-908f-418c-bd14-7448052e74c0", + "id": "217a1093-de43-4951-980a-57278869f1ee", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/217a1093-de43-4951-980a-57278869f1ee", + "subtype": null, + "text": "

It is important to consider one of the duties of the auditors as mandated by Section 143(2) whereunder the auditor has to make an audit report which after taking into consideration the accounts and financial statements, give a “true and fair view” of the state of the company’s affairs.

Implicit in this is the duty to verify transactions and take a prudent decision as to their recognition in the books of accounts. If the transaction appears to be true and fair, the auditor puts her seal of authenticity on it.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6da140f2-9cb8-4016-b860-154fd58efc94", + "id": "dd74c5a5-4c71-443e-9161-ac68ccb56cb2", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/dd74c5a5-4c71-443e-9161-ac68ccb56cb2", + "subtype": null, + "text": "

III. At the Stage of Presentation before the Shareholder

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9646f70f-a739-4b65-891b-163faebdf523", + "id": "e7ba8288-179e-4ec5-93f5-f92283e4307b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/e7ba8288-179e-4ec5-93f5-f92283e4307b", + "subtype": null, + "text": "

The financial statements are laid in the annual general meeting. The same is also accompanied by a Directors’ Responsibility Statement under section 134(3)(c). The purpose of this statement is to state that the directors have made judgments and estimates that are reasonable and prudent so as to give a “true and fair view” of the state of affairs of the company.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ff517898-db08-46f2-8179-791c6594b8a0", + "id": "92dad19d-7607-4bb9-92ff-4776013012d3", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/92dad19d-7607-4bb9-92ff-4776013012d3", + "subtype": null, + "text": "

IV. True and Fair View - The Common Thread

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "4eacc90b-fefc-4028-90c5-5b892ab52ea0", + "id": "37789915-575e-4168-b42c-ba69e1d95080", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/37789915-575e-4168-b42c-ba69e1d95080", + "subtype": null, + "text": "

In view of the above, one can now appreciate that \\"true and fair view of the company affairs\\" is one of the most important objectives of preparing the financial statements. The board of directors applies its mind and the auditors undertake an extensive exercise to authenticate the books.

Hence, whatever is recorded in the books of accounts & financial statements, is presumed to give a true and fair view. Thus, there is a sanctity attached in law to the audited books of accounts.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ac18cc53-065d-4494-b26f-90e66faf50ba", + "id": "a77660e3-7376-4b28-9fce-d38703c872e4", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/a77660e3-7376-4b28-9fce-d38703c872e4", + "subtype": null, + "text": "

This was echoed by the Supreme Court in Ishwar Dass Jain v. Sohan Lal, when it held that the rationale behind admissibility of parties' books of account as evidence is that the regularity of habit, the difficulty of falsification, and the fair certainty of ultimate detection give them, to a sufficient degree, a probability of trustworthiness.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ab70ecc2-32a7-4ed6-8e11-e0fd2e758c63", + "id": "f646e4d8-b1d3-4a3e-9979-ce613fe7de5b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f646e4d8-b1d3-4a3e-9979-ce613fe7de5b", + "subtype": null, + "text": "

V. Acknowledgment of debt: The Jurisprudence

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6a0a935e-be23-4e50-8d21-34672ad09e89", + "id": "0af70ffc-18a5-4472-9949-7bc74197092e", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/0af70ffc-18a5-4472-9949-7bc74197092e", + "subtype": null, + "text": "

The interplay of accounting for debt in the books of accounts and its consequent effect under the Limitation Act can be traced back to an early decision of the Chancery Division in Re Atlantic and Pacific Fibre Importing and Manufacturing Co Ltd, which was approved by the King’s Bench Division in Jones v. Bellgrove Properties Ltd.

Here, it was held that a balance sheet prepared and signed by the directors and the auditors as the agents of the company and then presented at the general meeting constitutes a good acknowledgment for the purposes of extending the limitation.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "189d7d1e-9fab-463a-93d4-9f54235344cb", + "id": "8765a843-b77a-40d4-a9cd-a7d06f6aed50", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/8765a843-b77a-40d4-a9cd-a7d06f6aed50", + "subtype": null, + "text": "

The Indian jurisprudence is not limited only to the aspect of period of limitation, but the proposition is applied in various other fields of law like taxation, arbitration, civil procedure code, etc. as well.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "dc998ae5-95bd-4106-bdac-15e0db1ec84a", + "id": "3deae7ae-a160-4b72-b839-8f52c13b176f", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/3deae7ae-a160-4b72-b839-8f52c13b176f", + "subtype": null, + "text": "

In terms of Income Tax Act, 1961, the Gujarat High Court in Ambika Mills Ltd. v. CIT, held that the liability in respect of unpaid wages was acknowledged by the assesse company at the end of each year in its balance sheets and hence those amounts retained the character of liabilities owing to the annual acknowledgments made by the assessee company.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "47e34579-3c93-4233-ac78-977d8c2b82ed", + "id": "7be27a5b-13d3-4565-897d-70171137017a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/7be27a5b-13d3-4565-897d-70171137017a", + "subtype": null, + "text": "

Similarly, the Madras High Court in CIT vs. Tamilnadu Warehousing Corporation, has held that once debt was shown as liability by the assessee in the books of accounts, the department was wrong in holding that it was assessable as income because there was no cessation of liability.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "38fcd092-0eed-4e5e-a260-1530ffed014d", + "id": "f92f2513-1532-4759-b0f8-c26bd8e26351", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f92f2513-1532-4759-b0f8-c26bd8e26351", + "subtype": null, + "text": "

The Supreme Court had the occasion to consider the plea of debt being acknowledged under the Negotiable Instruments Act, 1881 in AV Murthy v. BS Nagabasavanna, wherein it was held that if the amount borrowed by the respondent is shown in the balance sheet, it may amount to acknowledgement.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6715c512-827b-4214-b6fc-9cccafdbb5c0", + "id": "847a8fcc-e4a9-4584-a545-a1e831bf3dba", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/847a8fcc-e4a9-4584-a545-a1e831bf3dba", + "subtype": null, + "text": "

While considering Order 6 Rule 12, the Bombay High Court in Deccan Chronicle Holdings Ltd v. Tata Capital Financial Services Ltd held that an admission in the balance sheet of a company unless contradicted or refuted, would operate as an estoppel and would be the decisive factor for passing a decree for admission.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ee941ce2-520c-429f-bba6-a6bfba4410de", + "id": "6c0526b4-6195-4515-8e91-7e0a2cedc249", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/6c0526b4-6195-4515-8e91-7e0a2cedc249", + "subtype": null, + "text": "

It’s not as if the point of view that the financial statements have been made under compulsion of law has not been raised or is decided for the first time. The Calcutta High Court, as far back as in 1962 in Bengal Silk Mills Co. Vs. Ismail Golam Hossain Ariff, held that statement of a liability in the balance sheet amounted to acknowledgement of a debt giving rise to a fresh period of limitation, notwithstanding the fact that the balance sheet was prepared under 'compulsions of statute’.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "3131ff19-c583-4872-a7d9-cc3246ae656e", + "id": "cd18e4d5-81cf-4d83-88df-18dbfe523e41", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/cd18e4d5-81cf-4d83-88df-18dbfe523e41", + "subtype": null, + "text": "

More specifically, the Delhi High Court in Shahi Exports Pvt. Ltd. v. CMD Buildtech Pvt. Ltd concluded that it is a well-established position that an entry made in the company's balance sheet amounts to an acknowledgement of the debt and has the effect of extending the period of limitation under Section 18 of the Limitation Act.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "3603d40c-7575-4d55-ab13-8cdd779f0689", + "id": "0e260c79-3ad4-4ba1-ade1-5f7e509f9d7a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/0e260c79-3ad4-4ba1-ade1-5f7e509f9d7a", + "subtype": null, + "text": "

Finally, the Supreme Court has also held in unequivocal terms that entries in the books of accounts would amount to an acknowledgement of the liability within the meaning of Section 18 of the Limitation Act.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "dbb8878a-fc29-4b8e-9982-ef8e13f5f4ce", + "id": "01140c6c-3abf-4764-8bed-8dd0e2d6894a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/01140c6c-3abf-4764-8bed-8dd0e2d6894a", + "subtype": null, + "text": "A Caveat", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "7c92f65d-c3c8-4d33-9243-1e172b7d2c1b", + "id": "58e3afa8-49cb-4e72-bde0-755e7102d00a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/58e3afa8-49cb-4e72-bde0-755e7102d00a", + "subtype": null, + "text": "

However, it is pertinent to note that there is one important caveat that has been explained by the Delhi High Court. Sometimes, the directors in their report explain certain transactions. Therefore, in explaining the statements in the balance sheets, the directors' report must be taken together to find out the true meaning and purport of the statements.

In such a scenario, the Delhi High Court speaking through Justice AK Sikri (as he then was) in Sheetal Fabrics v. Coir Cushions Ltd, laid down that a statement in the balance sheet indicating liability is to be read along with the directors' report to see whether both so read would amount to an acknowledgement.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "17afebdc-dbf2-4431-885c-2fcb7e96b2cf", + "id": "b1156aca-64d6-4274-8751-9c3dadb6b91b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/b1156aca-64d6-4274-8751-9c3dadb6b91b", + "subtype": null, + "text": "Conclusion", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "5936eb59-0fcc-4693-a1f6-45e4dc7d16cc", + "id": "725e2aa5-9c5e-43ec-93ba-1cb7dc9b94a2", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/725e2aa5-9c5e-43ec-93ba-1cb7dc9b94a2", + "subtype": null, + "text": "

The majority members of the NCLAT have not considered the above aspects – both legal as well as accounting – while delivering the judgment on the issue.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "2287e5fd-b7fb-457e-9646-81f2bd5dc459", + "id": "f5ce5659-f43a-49d2-bb11-dff5c764acb0", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f5ce5659-f43a-49d2-bb11-dff5c764acb0", + "subtype": null, + "text": "
  1. The books of accounts hold an important status in the eyes of law and cannot be wished away simply because they are prepared under compulsion of law.

  2. There was a compulsion upon the directors to prepare the financial statements but there was no compulsion upon them to make any particular admission.

  3. They faithfully discharged their duty and in doing so they made honest admissions of the company's liabilities. Those admissions, though made in discharge of their duty, are nevertheless conscious and voluntary admissions.

  4. The NCLAT (majority) has unfortunately not dealt with Sections 128 129, 143 and 134 of the Companies Act, 2013 as well as the decisions cited above.

  5. The sanctity attached in law to the financial statements has been respected when the dispute is in the realm of taxation, company law, insolvency, arbitration, civil procedure code, negotiable instruments, etc. and has rightly stood the test of time.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6b0870bd-f377-45eb-b8e2-802cff709f95", + "id": "3eb35947-690f-46b0-b866-da74b3b00045", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/3eb35947-690f-46b0-b866-da74b3b00045", + "subtype": null, + "text": "

The minority decision has referred to few aspects discussed above. It is hoped that the majority decision is corrected and the minority view is upheld by the Supreme Court as and when the occasion so arises.

Failure to do so would lead to difficulty, as this five-member bench decision is binding on all the benches of NCLAT and would certainly apply with full force before NCLT benches.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "24c2cafa-bff5-4488-a09c-756e19b07ee5", + "id": "1a3f3f00-436a-40dd-87f7-5907ef89f57d", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/1a3f3f00-436a-40dd-87f7-5907ef89f57d", + "subtype": null, + "text": "

Till then, we can only seek recourse to the words of Chief Justice Hughes who wrote that a dissenting decision is “an appeal to the brooding spirit of the law, to the intelligence of a future day, when a later decision may possibly correct the error into which the dissenting judge believes the court to have been betrayed.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "1abb1d50-d899-4511-bf9b-2cb216968af9", + "id": "1e9bd9db-44bf-40d7-a026-301b2eee58a3", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/1e9bd9db-44bf-40d7-a026-301b2eee58a3", + "subtype": null, + "text": "

The author is a dually qualified professional. He is a graduate of Campus Law Centre, Faculty of Law, University of Delhi and a Fellow Chartered Accountant. He currently practices law in the courts of Delhi. He can be reached at mail@deepakjoshi.in

", + "title": "", + "type": "text", + }, + ], + "version": 33, + }, + ], + "comments": null, + "content-created-at": 1586183486596, + "content-type": "story", + "content-updated-at": 1586779256142, + "contributors": Array [], + "created-at": 1586691056788, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779255932, + "headline": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": "NCLAT", + "hero-image-metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "hero-image-s3-key": "barandbench/import/2019/10/NCLAT-7.jpg", + "id": "e46ad145-c0e2-472a-abe0-5fa0fd2e85e6", + "last-published-at": 1586779255932, + "linked-entities": Array [], + "linked-story-ids": Array [], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 708278, + "owner-name": "Meera Emmanuel", + "publish-at": null, + "published-at": 1586779255932, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 7, + "sections": Array [ + Object { + "collection": Object { + "id": 29914, + "name": "Columns", + "slug": "columns", + }, + "data": null, + "display-name": "Columns", + "domain-slug": null, + "id": 14020, + "name": "Columns", + "parent-id": null, + "section-url": "https://www.barandbench.com/columns", + "slug": "columns", + }, + Object { + "collection": Object { + "id": 29915, + "name": "Litigation Columns (Columns)", + "slug": "litigation-columns-columns", + }, + "data": null, + "display-name": "Litigation Columns", + "domain-slug": null, + "id": 14021, + "name": "Litigation Columns", + "parent-id": 14020, + "section-url": "https://www.barandbench.com/columns/litigation-columns", + "slug": "litigation-columns", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "An analysis of the NCLAT's decision in the matter of V Padmakumar v. Stressed Assets Stabilisation Fund (SASF) & Anr. ", + "meta-keywords": Array [ + "NCLAT", + "V. Padmakumar vs. Stressed Assets Stabilisation Fund (SASF) & Anr", + "IBC", + "Deepak Joshi", + ], + "meta-title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + "sequence-no": null, + "slug": "columns/the-nclats-majority-decision-on-acknowledgement-of-debt-in-balance-sheets-an-appeal-to-the-brooding-spirit-of-law", + "status": "published", + "story-content-id": "e46ad145-c0e2-472a-abe0-5fa0fd2e85e6", + "story-template": "text", + "story-version-id": "b6df935c-e707-46f4-a75e-7d7a6892139a", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006487, + "meta-description": null, + "meta-title": null, + "name": "IBC", + "slug": "ibc", + "tag-type": "Tag", + }, + Object { + "id": 2006488, + "meta-description": null, + "meta-title": null, + "name": "Insolvency and Bankruptcy Code", + "slug": "insolvency-and-bankruptcy-code", + "tag-type": "Tag", + }, + Object { + "id": 2006508, + "meta-description": null, + "meta-title": null, + "name": "NCLAT", + "slug": "nclat", + "tag-type": "Tag", + }, + Object { + "id": 2006798, + "meta-description": null, + "meta-title": null, + "name": "National Company Law Appellate Tribunal", + "slug": "national-company-law-appellate-tribunal", + "tag-type": "Tag", + }, + ], + "updated-at": 1586691056788, + "url": "https://www.barandbench.com/columns/the-nclats-majority-decision-on-acknowledgement-of-debt-in-balance-sheets-an-appeal-to-the-brooding-spirit-of-law", + "version": 38, + "votes": Object {}, + "word-count": 1675, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 1268959, + "assignee-name": "Debayan Roy", + "author-id": 1268959, + "author-name": "Debayan Roy", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 1268959, + "name": "Debayan Roy", + "slug": "debayan-roy", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586749383438, + "card-updated-at": 1586785019187, + "content-id": "c4351a17-e731-4278-a4b1-9314bc6c4de3", + "content-version-id": "1f4be133-e82e-47ad-ba27-ca03d973e625", + "id": "c4351a17-e731-4278-a4b1-9314bc6c4de3", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "", + "caption": null, + "key": "barandbench/2020-04/bed7d33a-74c2-4505-b6a7-113913020a40/Screenshot_2020_04_05_at_6_26_24_PM.png", + "metadata": Object { + "height": 1128, + "width": 1526, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "40f72763-ab44-46a2-94b9-1425c92ef9f1", + "id": "7ab5e5fa-b9ec-4582-bd07-2fe15a18c2b2", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/7ab5e5fa-b9ec-4582-bd07-2fe15a18c2b2", + "subtype": null, + "text": "

The Supreme Court today refused to hear the petition filed by Jamiat Ulema-e-Hind against communalization of the Nizamuddin Markaz issue, unless the Press Council of India (PCI) was made a party to the case.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "95aabd3c-7a87-4cbe-b80b-a8808671a10d", + "id": "939e4ed4-2859-4c2b-85a4-0459bd4c3d24", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/939e4ed4-2859-4c2b-85a4-0459bd4c3d24", + "subtype": null, + "text": "

Advocate-on-Record Ejaz Maqbool urged the Court that there was violence due to the constant news reporting around the Tablighi Jamaat members.

However, the Bench headed by Chief Justice of India SA Bobde maintained in the hearing conducted through video conferencing,

\\"We cannot curb the freedom of press.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "766ba29a-6861-4661-b666-10dccd4275b2", + "id": "0e9bb128-3fd3-4221-aa23-1bfacdffdad6", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/0e9bb128-3fd3-4221-aa23-1bfacdffdad6", + "subtype": null, + "text": "

Maqbool persisted with the Court that in Karnataka, there have been incidents of violence owing to the reportage, and that names of people have been made public.

In response, CJI Bobde stated that if it was a question of killing, defamation \\"then your remedy is somewhere else,\\" but \\"if it's a question of larger reporting then PCI has to be made party.\\"

The case is now likely to be heard next week.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "b3c91ee0-dd81-4f6e-a008-a9d95b4bf3a5", + "id": "001f82d7-9d8e-48f5-93e6-9c108a7dc0ef", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/001f82d7-9d8e-48f5-93e6-9c108a7dc0ef", + "subtype": null, + "text": "

The Bench led by CJI SA Bobde was hearing a plea by Jamiat Ulema-e-Hind which had claimed that the media has communalised the Nizamuddin Markaz event, where about 2,500 individuals congregated in the midst of the Coronavirus outbreak.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7fa32a56-1e4a-486f-9ba5-c17efe3ef221", + "id": "d391bc45-65a2-4fae-b24f-9bf7a89e33ef", + "metadata": Object { + "linked-story": Object { + "headline": "Breaking: Petition filed in Supreme Court seeking action against media for communalizing Nizamuddin Markaz issue +", + "highlighted-headline": null, + "highlighted-text": "", + "id": "383c6985-41bb-4500-95ea-5603af6e2afb", + "story-content-id": "383c6985-41bb-4500-95ea-5603af6e2afb", + }, + "linked-story-id": "383c6985-41bb-4500-95ea-5603af6e2afb", + }, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/d391bc45-65a2-4fae-b24f-9bf7a89e33ef", + "subtype": "also-read", + "text": "Breaking: Petition filed in Supreme Court seeking action against media for communalizing Nizamuddin Markaz issue +", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7189eac5-c245-44e8-96c5-616373971a46", + "id": "020b0a61-d4b2-484b-ac91-a6ac161fd24a", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/020b0a61-d4b2-484b-ac91-a6ac161fd24a", + "subtype": null, + "text": "

The plea filed by Advocate Ejaz Maqbool states that reports on the Tablighi Jamaat by certain sections of print and electronic media has \\"demonised the entire Muslim community.\\"

The plea further states that this demonization of the community has led to serious \\"threat to life and liberty of Muslims\\", and has thus led to the violation of their \\"Right to life under Article 21.\\"

The petition says that most of the reports presented the facts in a twisted manner, using phrases like \\"Corona Jihad\\", \\"Corona Terrorism\\" or \\"Islamic Resurrection\\".

The petitioner organisation contends that if there is any delay in ordering a directive to stop communal reporting regarding the Markaz issue, it would only “promote ill-will, enmity and hatred towards the Muslim community in India.”

", + "title": "", + "type": "text", + }, + Object { + "alt-text": "Alt text", + "description": "", + "family-id": "0dd8dafe-a02c-4331-8f2e-69612cd6db15", + "id": "c048c43e-da73-4130-9fc6-4a672fd28983", + "image-attribution": "", + "image-metadata": Object { + "height": 1128, + "width": 1526, + }, + "image-s3-key": "barandbench/2020-04/bed7d33a-74c2-4505-b6a7-113913020a40/Screenshot_2020_04_05_at_6_26_24_PM.png", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/c048c43e-da73-4130-9fc6-4a672fd28983", + "subtype": null, + "title": "Media on Markaz: Corona Jihad etc", + "type": "image", + }, + ], + "version": 24, + }, + Object { + "card-added-at": 1586749579058, + "card-updated-at": 1586749659974, + "content-id": "9e15edc4-4ba3-4417-b0b2-e8fb50d168dd", + "content-version-id": "0a39ce47-cbc1-4f28-812c-5c35fdc704a9", + "id": "9e15edc4-4ba3-4417-b0b2-e8fb50d168dd", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "a6ae8ce1-830c-47f3-8900-9ee09caf338b", + "id": "37560c3b-e9a6-4e71-94dd-52042cfc0370", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/37560c3b-e9a6-4e71-94dd-52042cfc0370", + "subtype": null, + "text": "

The petition has listed “several social media posts” which “wrongly showed Muslims doing deliberate acts to spread COVID-19.” The plea has also given links to fact check reports that have gone on to prove that such reports were malicious and “were old unrelated videos.”

Further, the plea noted that while such reports demonising the Muslim community have flooded social media, platforms like Twitter have taken no action in accordance with their standard practice and guidelines.

One of the fake social media posts highlighted in the plea was a mass Muslim religious gathering where an act of “mass sneezing” was reported. However, the petition has given links to fact check reports highlighting how it was a Sufi practice which was falsely reported as an effort to spread the Coronavirus pandemic.

", + "title": "", + "type": "text", + }, + ], + "version": 4, + }, + Object { + "card-added-at": 1586749625909, + "card-updated-at": 1586749659974, + "content-id": "860f4375-707d-461d-882b-9d29e9731a96", + "content-version-id": "ec7e3ebe-cfdb-432a-9b4d-a673ac2aa1b5", + "id": "860f4375-707d-461d-882b-9d29e9731a96", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "b72c07fc-72f4-406d-9723-dcf09cfb4c0c", + "id": "eb9eb938-f3fa-4ee0-91bb-dcd14713bbbb", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/eb9eb938-f3fa-4ee0-91bb-dcd14713bbbb", + "subtype": null, + "text": "

The petition stated that such fake reports were in violation of the Supreme Court's order of March 31, by which the media was directed to publish “official version of reports” dealing with the COVID-19 outbreak. It is stated,

“Media was directed to maintain a strong sense of responsibility and ensure that unverified news capable of causing panic would not be disseminated.”

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586749625909, + "card-updated-at": 1586749659974, + "content-id": "432ecfdc-5f79-472d-bb0c-c67235cc761c", + "content-version-id": "5e7f4067-dbfc-4f78-b779-51b9d716b61e", + "id": "432ecfdc-5f79-472d-bb0c-c67235cc761c", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "79f99135-c1a6-4376-814b-16836058c7fb", + "id": "66305351-d774-497c-9ce3-45ea83868e2b", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/66305351-d774-497c-9ce3-45ea83868e2b", + "subtype": null, + "text": "

The petition had prayed for strict action against “sections of media spreading bigotry and communal hatred in relation to the Nizamuddin Markaz issue”. It goes on to highlight that the recent Delhi riots was one of the “worst communal riots in the Union territory’s history” and that communalising the Tablighi Jamaat meet puts the “law and order situation of the entire state\\" at risk.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + ], + "comments": null, + "content-created-at": 1586749310815, + "content-type": "story", + "content-updated-at": 1586785024223, + "contributors": Array [], + "created-at": 1586785019173, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586777615361, + "headline": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": "Tablighi Jamaat", + "hero-image-metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "hero-image-s3-key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "id": "1ddb7538-5ac3-4939-947d-bbda4912152d", + "last-correction-published-at": 1586785024210, + "last-published-at": 1586777615361, + "linked-entities": Array [], + "linked-story-ids": Array [ + "383c6985-41bb-4500-95ea-5603af6e2afb", + ], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 1268959, + "owner-name": "Debayan Roy", + "publish-at": null, + "published-at": 1586777615361, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 3, + "sections": Array [ + Object { + "collection": Object { + "id": 29911, + "name": "News", + "slug": "news", + }, + "data": null, + "display-name": "News", + "domain-slug": null, + "id": 14017, + "name": "News", + "parent-id": null, + "section-url": "https://www.barandbench.com/news", + "slug": "news", + }, + Object { + "collection": Object { + "id": 29912, + "name": "Litigation News (News)", + "slug": "litigation-news", + }, + "data": null, + "display-name": "Litigation News", + "domain-slug": null, + "id": 14018, + "name": "Litigation News", + "parent-id": 14017, + "section-url": "https://www.barandbench.com/news/litigation", + "slug": "litigation", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "The Supreme Court today refused to hear a petition against communalization of the Nizamuddin Markaz issue, unless the PCI was made a party to the case.", + "meta-keywords": Array [ + "Press Council of India ", + "Supreme Court of India", + "Jamiat Ulema-e-Hind", + "Ejaz Maqbool", + ], + "meta-title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + "sequence-no": null, + "slug": "news/we-cannot-curb-freedom-of-press-make-press-council-of-india-a-party-sc-on-jamiat-ulema-e-hind-plea-against-communalization-of-markaz-issue", + "status": "published", + "story-content-id": "1ddb7538-5ac3-4939-947d-bbda4912152d", + "story-template": "text", + "story-version-id": "0628be41-29fc-483c-9594-3d876718a61c", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006321, + "meta-description": null, + "meta-title": null, + "name": "Supreme Court", + "slug": "supreme-court", + "tag-type": "Tag", + }, + Object { + "id": 2008575, + "meta-description": null, + "meta-title": null, + "name": "Press Council of India", + "slug": "press-council-of-india", + "tag-type": "Tag", + }, + Object { + "id": 2512358, + "meta-description": null, + "meta-title": null, + "name": "Coronavirus", + "slug": "coronavirus", + "tag-type": "Tag", + }, + Object { + "id": 2515491, + "meta-description": null, + "meta-title": null, + "name": "COVID-19", + "slug": "covid-19", + "tag-type": "Tag", + }, + Object { + "id": 2543019, + "meta-description": null, + "meta-title": null, + "name": "Nizammudin Markaz", + "slug": "nizammudin-markaz", + "tag-type": "Tag", + }, + Object { + "id": 2548753, + "meta-description": null, + "meta-title": null, + "name": "Freedom of Press", + "slug": "freedom-of-press", + "tag-type": "Tag", + }, + Object { + "id": 2548760, + "meta-description": null, + "meta-title": null, + "name": "Jamiat Ulema-e-Hind", + "slug": "jamiat-ulema-e-hind", + "tag-type": "Tag", + }, + ], + "updated-at": 1586785021649, + "url": "https://www.barandbench.com/news/we-cannot-curb-freedom-of-press-make-press-council-of-india-a-party-sc-on-jamiat-ulema-e-hind-plea-against-communalization-of-markaz-issue", + "version": 27, + "votes": Object {}, + "word-count": 575, + }, + ], + }, + "subscriptions": Object { + "fallbackEntitlement": Object { + "data": Object { + "isLast": false, + "isLoggedIn": [Function], + "numberRemaining": 2, + }, + "grantReason": [Function], + "granted": [Function], + "source": "fallback", + }, + "score": Object { + "isReadyToPay": 9, + "supportsViewer": 10, + }, + "services": Object { + "actions": Object { + "login": [Function], + "subscribe": [Function], + }, + "authorizationUrl": [Function], + "pingbackUrl": [Function], + }, + }, + "webengage": Object { + "isEnabled": true, + }, + }, + "slots": Object { + "story": Object { + "top-slot": [Function], + }, + }, + }, + "publisherConfig": Object { + "cdn-image": "gumlet.assettype.com", + "cdn-name": "https://thumbor-stg.assettype.com/", + "domains": Array [], + "env": "production", + "facebook": Object { + "app-id": "1234", + }, + "language": Object { + "direction": "ltr", + "ietf-code": "de-DE", + "iso-code": "en", + "name": "english", + }, + "layout": Object { + "no-of-visible-cards-in-a-blocked-story": 1, + }, + "publisher-id": 1, + "publisher-name": "vikatan", + "publisher-settings": Object { + "copyright": "Copyright © 2020 Newslaundry Media Private Limited. All Rights Reserved ", + "description": "We have finally migrated our website to better architecture! While the fancy new website will be up in a few months, we have fixed issues related to payment and login in the meantime. You will need to log in anew. If you have forgotten your password, you can generate one by clicking on the forgot password link (it works!). Send any questions or feedback to contact@newslaundry.com.", + "publisher-logo": null, + "title": "Newslaundry", + }, + "sections": Array [], + "sketches-host": "https://www.vikatan.com", + }, + } + } storyType="text" /> diff --git a/src/templates/generic-story/generic-story.tsx b/src/templates/generic-story/generic-story.tsx index b7266a2f..102ef40a 100644 --- a/src/templates/generic-story/generic-story.tsx +++ b/src/templates/generic-story/generic-story.tsx @@ -80,7 +80,7 @@ export const GenericStory = ({ story, config }: CommonTemplateTypes) => { - + diff --git a/src/templates/live-blog/__snapshots__/live-blog.validation.test.tsx.snap b/src/templates/live-blog/__snapshots__/live-blog.validation.test.tsx.snap index 7857111d..61420506 100644 --- a/src/templates/live-blog/__snapshots__/live-blog.validation.test.tsx.snap +++ b/src/templates/live-blog/__snapshots__/live-blog.validation.test.tsx.snap @@ -4114,6 +4114,3195 @@ exports[`The LiveBlog Default Template should match snapshot 1`] = ` /> The Supreme Court today pronounced its judgment detailing the reasons for ordering a floor test in the Madhya Pradesh Legislative Assembly, in view of the recent political crisis in the state [Shivraj Singh Chouhan v. Speaker, Madhya Pradesh Legislative Assembly].

", + "title": "", + "type": "text", + }, + ], + "version": 17, + }, + Object { + "card-added-at": 1586768274836, + "card-updated-at": 1586771733373, + "content-id": "69938439-efdf-47cb-8a22-e137de7e1203", + "content-version-id": "01e0db3a-41af-4cc2-b763-913e2f1adaf4", + "id": "69938439-efdf-47cb-8a22-e137de7e1203", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "eed6d9d0-1fcd-45f1-9a13-013351e94b38", + "id": "70c4126f-b3df-4809-8bac-15146e5c6496", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/70c4126f-b3df-4809-8bac-15146e5c6496", + "subtype": null, + "text": "

The political crisis, triggered by the resignation of 22 members of the Congress party in Madhya Pradesh, was brought to an end after the Supreme Court directed for a floor test on March 19.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a80b93ca-254d-4a8b-958d-00548dd8687f", + "id": "9c846f50-83ff-44c2-8f60-66c42e0cbe42", + "metadata": Object { + "linked-story": Object { + "headline": "[Breaking] Madhya Pradesh Political Crisis: Supreme Court directs Floor Test to be held on March 20", + "highlighted-headline": null, + "highlighted-text": "", + "id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + "story-content-id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + }, + "linked-story-id": "6066e82b-b09f-4157-b872-ed2a05c8821c", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9c846f50-83ff-44c2-8f60-66c42e0cbe42", + "subtype": "also-read", + "text": "[Breaking] Madhya Pradesh Political Crisis: Supreme Court directs Floor Test to be held on March 20", + "title": "", + "type": "text", + }, + ], + "version": 15, + }, + Object { + "card-added-at": 1586769147391, + "card-updated-at": 1586771733373, + "content-id": "8e000f11-e872-4883-bc68-8b93ce55d19e", + "content-version-id": "1d5531b8-e064-4e23-abfd-717774ee0165", + "id": "8e000f11-e872-4883-bc68-8b93ce55d19e", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "82f3f817-4274-4754-982c-905c54586354", + "id": "272b53da-c30a-4242-9bd2-28062e09c970", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/272b53da-c30a-4242-9bd2-28062e09c970", + "subtype": null, + "text": "

By way of background, after the ex-Congress legislators were “taken captive”, BJP leaders approached the Speaker of the Assembly on March 10 and tendered the resignation letters of the captive MLAs

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ea2fb1a9-ca34-489a-9c4f-fd3b3c97c755", + "id": "bc70d169-8f9c-416b-9f43-1ffeace15a73", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bc70d169-8f9c-416b-9f43-1ffeace15a73", + "subtype": null, + "text": "

Then Chief Minister Kamal Nath, on March 13, addressed a letter to Governor Lalji Tandon, offering to hold a floor test once the MLAs are released. The Congress then issued a whip to ensure the presence of all its members at the budget session of the state assembly which was to commence on March 16.

Governor Tandon then sent a letter to Nath, urging him to gain the trust vote on the floor of the House.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "10a4af81-a19a-47cc-b043-807ada946bb7", + "id": "9a0c0623-88ae-4a13-ae04-6a53454998d3", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9a0c0623-88ae-4a13-ae04-6a53454998d3", + "subtype": null, + "text": "

When the session commenced on March 16, the MLAs belonging to the Madhya Pradesh Congress were absent. The Governor once again wrote to the CM, asking him to hold the trust vote on March 17.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9f25aa21-54c7-4ba9-880e-b931adc2c0c0", + "id": "07c034f9-7b67-460b-b8f2-092c4b33fb0e", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/07c034f9-7b67-460b-b8f2-092c4b33fb0e", + "subtype": null, + "text": "

Meanwhile, BJP MLAs from Madhya Pradesh moved the Supreme Court seeking a direction to conduct a floor test in the state assembly.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "13968fe1-2485-43b6-8b4e-066dd1bed00a", + "id": "260c2762-f42d-43b6-81fe-7e0edf20ddef", + "metadata": Object { + "linked-story": Object { + "headline": "Breaking: BJP leaders file petition in Supreme Court calling for Floor Test in Madhya Pradesh Assembly", + "highlighted-headline": null, + "highlighted-text": "", + "id": "4411e926-6322-453c-9996-3e05c7cadba0", + "story-content-id": "4411e926-6322-453c-9996-3e05c7cadba0", + }, + "linked-story-id": "4411e926-6322-453c-9996-3e05c7cadba0", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/260c2762-f42d-43b6-81fe-7e0edf20ddef", + "subtype": "also-read", + "text": "Breaking: BJP leaders file petition in Supreme Court calling for Floor Test in Madhya Pradesh Assembly", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a6848e7-5eab-44c4-a2b1-4613f5263156", + "id": "c4a6a195-5e53-48ea-9068-890fcde32b3b", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c4a6a195-5e53-48ea-9068-890fcde32b3b", + "subtype": null, + "text": "

Around the same time, the MP Congress to approach the Supreme Court, challenging the Governor's direction to hold a floor test.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9c2334a2-1963-42ef-9744-ea810500edce", + "id": "db48483c-f1b2-40ab-8725-0a9c3150f9a3", + "metadata": Object { + "linked-story": Object { + "headline": "Trust Vote can't be held in absence of captive MLAs: Madhya Pradesh Congress moves SC against Governor's direction to hold floor test", + "highlighted-headline": null, + "highlighted-text": "", + "id": "018860ae-536c-4a2a-9793-de42ad850fb0", + "story-content-id": "018860ae-536c-4a2a-9793-de42ad850fb0", + }, + "linked-story-id": "018860ae-536c-4a2a-9793-de42ad850fb0", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/db48483c-f1b2-40ab-8725-0a9c3150f9a3", + "subtype": "also-read", + "text": "Trust Vote can't be held in absence of captive MLAs: Madhya Pradesh Congress moves SC against Governor's direction to hold floor test", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7e5336de-28c1-42f2-be06-34d00bb9818e", + "id": "9cc7a6fb-a01c-4d6a-a660-a25a94bf12c5", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/9cc7a6fb-a01c-4d6a-a660-a25a94bf12c5", + "subtype": null, + "text": "

After hearing the matter for three days, the Court directed for a floor test to be held.

", + "title": "", + "type": "text", + }, + ], + "version": 7, + }, + Object { + "card-added-at": 1586769388600, + "card-updated-at": 1586771733373, + "content-id": "dee9946a-8a3c-4199-b974-a4e972c314b9", + "content-version-id": "6ddbb6b6-c06d-443e-9ab8-59c5ecb0b8b7", + "id": "dee9946a-8a3c-4199-b974-a4e972c314b9", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "d99a708e-80f2-4088-a0b6-cf8efa603a51", + "id": "a5bbec81-b810-445c-9161-57a6c84dc8e0", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/a5bbec81-b810-445c-9161-57a6c84dc8e0", + "subtype": null, + "text": "

In today's judgment passed by the Bench of Justices DY Chandrachud and Hemant Gupta, a number of issues surrounding the crisis are addressed. These include the powers of the Governor and the Speaker, as well as the trend of defection being seen in various states.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ad271167-8b4e-4d4d-8695-ec1796f5a5c4", + "id": "187a111e-d42d-462a-b43e-1d9e21a2708c", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/187a111e-d42d-462a-b43e-1d9e21a2708c", + "subtype": null, + "text": "

Powers of the Governor

The primary issue before the Court was whether the Governor is entrusted with the authority to call for a trust vote in the course of a running assembly.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e87f2511-4b55-448d-b816-cd5037b8d5ce", + "id": "d1f6ca53-36be-476d-8625-a2c1b956de76", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d1f6ca53-36be-476d-8625-a2c1b956de76", + "subtype": null, + "text": "

At the outset, the Court dismissed warnings that it should not enter the realm of politics by adjudicating on such issues.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "c7221449-8688-488c-98d8-8748e9bfbbf4", + "id": "01685c09-42f1-451e-bc94-1ec1249e7c65", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/01685c09-42f1-451e-bc94-1ec1249e7c65", + "subtype": null, + "text": "

\\"As the ultimate arbiter of the constitutional text, this Court is tasked with ensuring that each branch of government operates within the limits placed upon it by the Constitution, including in the realm of democratic politics…

...Merely because the prima facie determination made by the Governor was of the political support enjoyed by the incumbent government or the action demanded was a political process (the floor test) is not a reason for this Court not to hear the matter.\\"

", + "title": "", + "type": "text", + }, + ], + "version": 3, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "cb2866dd-99dc-462a-98a2-f29bd3af9c7c", + "content-version-id": "053c823a-5a9d-4480-9a1c-5ac76a7b892c", + "id": "cb2866dd-99dc-462a-98a2-f29bd3af9c7c", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "89f41557-c1b1-47c6-9bf7-49ce08180b95", + "id": "a8d5245b-cb1b-494e-8f5d-6d1c5200b091", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/a8d5245b-cb1b-494e-8f5d-6d1c5200b091", + "subtype": null, + "text": "

The Court went on to note that the question of whether a Governor can call for a trust vote in an already constituted legislative assembly is not entirely res integra. After referring to the Suprmee Court's decision in SR Bommai v. Union of India, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e1675f96-3f49-466e-9b4c-52be266bb2bf", + "id": "bceac042-9e97-4a38-a10b-daeb9741cf3e", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"As a matter of constitutional law, it would not be correct to proceed on the basis that the constitutional authority entrusted to the Governor to require the Council of Ministers to prove their majority on the floor of the House can only be exercised at the very inception after general elections are held and not when the Governor has objective reasons to believe that the incumbent government does not command the confidence of the house. The Governor is not denuded of the power to order a floor test where on the basis of the material available to the Governor it becomes evident that the issue as to whether the government commands the confidence of the house requires to be assessed on the basis of a floor test.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bceac042-9e97-4a38-a10b-daeb9741cf3e", + "subtype": "quote", + "text": "
\\"As a matter of constitutional law, it would not be correct to proceed on the basis that the constitutional authority entrusted to the Governor to require the Council of Ministers to prove their majority on the floor of the House can only be exercised at the very inception after general elections are held and not when the Governor has objective reasons to believe that the incumbent government does not command the confidence of the house. The Governor is not denuded of the power to order a floor test where on the basis of the material available to the Governor it becomes evident that the issue as to whether the government commands the confidence of the house requires to be assessed on the basis of a floor test.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "b1279481-04ab-47ae-9c9b-da9e29bc4a0c", + "id": "d8b2d0e1-4d51-4834-bbfd-fd1442006b57", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d8b2d0e1-4d51-4834-bbfd-fd1442006b57", + "subtype": null, + "text": "

The Bench further warned that entrusting such a function to the Governor is not to destabilise an existing government, and that such a decision would be amenable to judicial review.

It also called for circumspection on the part of the Governor while calling for a floor test.

\\"In exercising the constitutional authority to demand a trust vote, the Governor must do so with circumspection in a manner that ensures that the authority of the House to determine the existence or loss of confidence in the government is not undermined. Absent exigent and compelling circumstances, there is no reason for the Governor to prevent the ordinary legislative process of a no confidence motion from running its due course.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "302bdf3a-e2dc-4094-9ce6-740510d7afbd", + "id": "c4f2d283-33bf-41a5-a695-7bfe0868fe0f", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c4f2d283-33bf-41a5-a695-7bfe0868fe0f", + "subtype": null, + "text": "

The Court went on to detail what is expected of the role of the Governor.

\\"The Governor is an appointee of the President but does not represent either a political ideology or a political view. The Governor is expected to discharge the role of a constitutional statesman. The authority of the Governor is not one to be exercised in aid of a political dispensation which considers an elected government of the day to be a political opponent.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "684f8954-c837-47e8-8bbf-b871c0b677cc", + "id": "14ab0504-f0c1-4b0f-82a5-1fbb7bf5f891", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/14ab0504-f0c1-4b0f-82a5-1fbb7bf5f891", + "subtype": null, + "text": "

Moreover, it noted that the Governor's powers should not be used to destabilise governments.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "86c85786-68a1-40cc-9af4-c63b2ba14b4c", + "id": "2af9b57b-6dbe-49ce-95cb-7ea846ca7571", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"In discharging this crucial role, it is necessary that the Governor bear in mind that the purpose underlying the entrustment of the authority to require a trust vote is not to displace duly elected governments but to intervene with caution when the circumstances which are drawn to the attention of the Governor indicate a loss of majority. This power is granted to the Governor to ensure that the principle of collective responsibility is maintained at all times and must be exercised with caution.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2af9b57b-6dbe-49ce-95cb-7ea846ca7571", + "subtype": "quote", + "text": "
\\"In discharging this crucial role, it is necessary that the Governor bear in mind that the purpose underlying the entrustment of the authority to require a trust vote is not to displace duly elected governments but to intervene with caution when the circumstances which are drawn to the attention of the Governor indicate a loss of majority. This power is granted to the Governor to ensure that the principle of collective responsibility is maintained at all times and must be exercised with caution.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "50e753f5-22cf-4857-a4ff-6bb6a94ac49d", + "content-version-id": "5ed2c0cb-e510-40f4-9619-ea7781d7da6a", + "id": "50e753f5-22cf-4857-a4ff-6bb6a94ac49d", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "b076b6e1-5de6-47a7-8887-a9bcb503f0d9", + "id": "bae057f8-0fdc-48aa-aa06-416d1e92f2ea", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/bae057f8-0fdc-48aa-aa06-416d1e92f2ea", + "subtype": null, + "text": "

With regard to the present case, the Court ruled that in view of the resignation of the 22 MLAs (which were accepted by the Speaker) and the Chief Minster's refusal to conduct a floor test on March 16, the Governor was justified in calling for a floor test to be conducted.

Referring to earlier instances where the Court has ordered floor tests to be conducted in various states, the Court said,

\\"...with the communication of the Governor for convening a trust vote immediately after the Governor‘s address, the session of the Legislative Assembly was adjourned till 26 March 2020 despite the House having already convened. This would have allowed the state of political uncertainty in Madhya Pradesh to continue and furnish avenues for political bargaining on terms which cannot be regarded as legitimate. It is with a view to obviate illegitimate and unseemly political bargaining in the quest for political power that this Court has consistently insisted upon the convening of a trust vote at the earliest date.\\"

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "886931a6-7d7e-482b-9623-e4ce11bd0f6b", + "content-version-id": "a595f84e-272b-4ead-b745-62ca755a6d3b", + "id": "886931a6-7d7e-482b-9623-e4ce11bd0f6b", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "", + "caption": null, + "key": "barandbench/2020-03/75a79c28-cd62-4cda-a1de-d8daa8ccb818/AM_singhivi.jpg", + "metadata": Object { + "height": 350, + "width": 700, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "58782846-a21f-40fa-9cf2-2449e4f4bb45", + "id": "2f12a425-4f65-48df-acac-cd47d9852756", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2f12a425-4f65-48df-acac-cd47d9852756", + "subtype": null, + "text": "

Speaker's discretion v. Governor's prerogative

The Court went on to deliberate on the argument forwarded by Senior Advocate Abhishek Manu Singhvi that convening a trust vote at this stage will impinge on the discretion of the Speaker to determine whether the resignations should be accepted.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a8955c85-44e3-4e6e-9af9-b03b51a5205e", + "id": "84a9c9f9-dec4-4b2e-b48b-ba67bffad217", + "metadata": Object { + "linked-story": Object { + "headline": "Madhya Pradesh Political Crisis: How does Court ensure that there is free exercise of choice by MLAs? SC adjourns matter to tomorrow", + "highlighted-headline": null, + "highlighted-text": "", + "id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + "story-content-id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + }, + "linked-story-id": "d26ace08-65f1-45f9-8339-1c5787a09c3d", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/84a9c9f9-dec4-4b2e-b48b-ba67bffad217", + "subtype": "also-read", + "text": "Madhya Pradesh Political Crisis: How does Court ensure that there is free exercise of choice by MLAs? SC adjourns matter to tomorrow", + "title": "", + "type": "text", + }, + Object { + "alt-text": "Alt text", + "description": "", + "family-id": "e4162d62-0912-455f-b3e8-724dc7bbbec7", + "id": "2f687e61-5706-48bf-a732-f84345380941", + "image-attribution": "", + "image-metadata": Object { + "height": 350, + "width": 700, + }, + "image-s3-key": "barandbench/2020-03/75a79c28-cd62-4cda-a1de-d8daa8ccb818/AM_singhivi.jpg", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2f687e61-5706-48bf-a732-f84345380941", + "subtype": null, + "title": "Senior Advocate AM Singhvi", + "type": "image", + }, + Object { + "description": "", + "family-id": "0e8c883a-b0b3-44be-b234-90460fe7a24c", + "id": "2853f865-3cbe-487e-a082-2d09c29b2c41", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/2853f865-3cbe-487e-a082-2d09c29b2c41", + "subtype": null, + "text": "

In this regard, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a7c4b300-546b-4595-9785-55fb02f160d5", + "id": "b23d6125-a55f-41ca-aeee-7dcee773dfde", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"The holding of a trust vote operates in a distinct field from the issue as to whether one or more individual members of the Legislative Assembly have embarked upon a voluntary act of resignation or have incurred the wrath of the Tenth Schedule...the pendency of the proceedings before the Speaker cannot be a valid basis to not have the confidence of the House in the government determined by the convening of a floor test.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/b23d6125-a55f-41ca-aeee-7dcee773dfde", + "subtype": "quote", + "text": "
\\"The holding of a trust vote operates in a distinct field from the issue as to whether one or more individual members of the Legislative Assembly have embarked upon a voluntary act of resignation or have incurred the wrath of the Tenth Schedule...the pendency of the proceedings before the Speaker cannot be a valid basis to not have the confidence of the House in the government determined by the convening of a floor test.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e6d55d1d-8442-4a9e-9edb-a2e12e14c806", + "id": "c46cd78a-820a-4c52-a4c2-16423f8fe828", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c46cd78a-820a-4c52-a4c2-16423f8fe828", + "subtype": null, + "text": "

The fact that the Speaker in the present case accepted the resignations tendered by six of the twenty-two members on March 14 weakened this argument, the Court said.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "5664b8be-20a3-4a25-97e3-b266a88dc052", + "content-version-id": "1db7c458-2de7-4b8c-b909-e0e45af5befe", + "id": "5664b8be-20a3-4a25-97e3-b266a88dc052", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "9dafe50d-3406-4ce6-b83d-61d8a2626a69", + "id": "d7bb93ee-1cc6-4cf2-a6c6-5a8bcc5a1c7e", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/d7bb93ee-1cc6-4cf2-a6c6-5a8bcc5a1c7e", + "subtype": null, + "text": "

Fluid allegiances and Horse-trading

While making a reference to the often-fluid allegiances of democratically elected representatives, the Court refused to express an opinion on the same.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "5e274648-3de1-4f0c-8c20-3b449ed9f0b6", + "id": "de02504c-3e11-4cd7-968d-cf9571b03693", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/de02504c-3e11-4cd7-968d-cf9571b03693", + "subtype": null, + "text": "

Alluding to the trend of MLAs being held \\"captive\\", the Court said that if violence and coercion exist, it would undermine a free and fair vote in the assembly. The Governor and the Court must take measures to ensure that the sanctity of the trust vote is maintained, the Bench observed.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "a66f7526-d40f-43ab-95a7-626a132ea526", + "id": "37ddcf98-fdc0-4d99-9013-412af112073a", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/37ddcf98-fdc0-4d99-9013-412af112073a", + "subtype": null, + "text": "

Commenting further on what has been termed as 'resort politics', the Court observed,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "c22a866a-d7f3-432b-8728-a754237fe366", + "id": "c135cd48-d799-4646-a295-12ce6204ff15", + "metadata": Object { + "attribution": "Supreme Court", + "content": "\\"The spectacle of rival political parties whisking away their political flock to safe destinations does little credit to the state of our democratic politics. It is an unfortunate reflection on the confidence which political parties hold in their own constituents and a reflection of what happens in the real world of politics. Political bargaining, or horse-trading, as we noticed, is now an oft repeated usage in legal precedents. ̳Poaching‘ is an expression which was bandied about on both sides of the debate in the present case. It is best that courts maintain an arm‘s length from the sordid tales of political life.\\"", + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/c135cd48-d799-4646-a295-12ce6204ff15", + "subtype": "quote", + "text": "
\\"The spectacle of rival political parties whisking away their political flock to safe destinations does little credit to the state of our democratic politics. It is an unfortunate reflection on the confidence which political parties hold in their own constituents and a reflection of what happens in the real world of politics. Political bargaining, or horse-trading, as we noticed, is now an oft repeated usage in legal precedents. ̳Poaching‘ is an expression which was bandied about on both sides of the debate in the present case. It is best that courts maintain an arm‘s length from the sordid tales of political life.\\"
Supreme Court
", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "310b72e4-b5ae-447e-b81f-2caeec0d58ba", + "id": "095ab0c6-445d-4ffd-8d07-3c164cb6e439", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/095ab0c6-445d-4ffd-8d07-3c164cb6e439", + "subtype": null, + "text": "

Justice Chandrachud further called for legislation to deal with breakdown in the composition and allegiances of political parties due to private allurements offered to Members as opposed to public policy considerations.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586771531587, + "card-updated-at": 1586771733373, + "content-id": "e3dbe86e-4e50-4172-83e4-9481a3d97ceb", + "content-version-id": "4d1eb488-dbfb-4a4d-b31a-613cfb998d35", + "id": "e3dbe86e-4e50-4172-83e4-9481a3d97ceb", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": null, + "key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "bc4e1387-4b36-4ae6-9c52-de61926b7d93", + "id": "747600f2-fe4f-46be-a136-412a0ec9732b", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/747600f2-fe4f-46be-a136-412a0ec9732b", + "subtype": null, + "text": "

On these grounds and more, the Court decided to order the floor test on March 19.

Terming the reliefs sought by the Madhya Pradesh Congress as “manifestly misconceived”, the Court held,

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "178ff92f-ccc2-4bc0-b4e7-0de91a144634", + "id": "03653355-5d96-4f9e-88fa-80c2e8a15b10", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/03653355-5d96-4f9e-88fa-80c2e8a15b10", + "subtype": null, + "text": "

\\"The court cannot issue a direction mandating that a trust vote cannot be convened if any one or more Members do not remain present in the House. Whether or not to remain present is for the individual Members to decide and they would, necessarily be accountable for the decisions which they take, both to their political party and to their constituents.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8cbc915a-00f5-42a3-a115-b02ad956a3a7", + "id": "72a1546c-7c23-4b31-bcc2-b7f967358f25", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/72a1546c-7c23-4b31-bcc2-b7f967358f25", + "subtype": null, + "text": "

During the hearings held last month, Senior Advocate Mukul Rohtagi appeared for the BJP MLA petitioners. Senior Advocate Maninder Singh appeared for the rebel MLAs, and Solicitor General Tushar Mehta represented the Governor.

On the other side, Senior Advocate Dushyant Dave appeared for the Madhya Pradesh Congress petitioners, Senior Advocate Abhishek Manu Singhvi appeared for the Speaker, and the Senior Counsel Kapil Sibal represented former Chief Minister Kamal Nath.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "92f9a804-cd81-46a3-a3a7-6278bb25ac9d", + "id": "5d3f853a-f730-47ac-bd06-d02d24f438ee", + "metadata": Object {}, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/5d3f853a-f730-47ac-bd06-d02d24f438ee", + "subtype": null, + "text": "

[Read the judgment]

", + "title": "", + "type": "text", + }, + Object { + "content-type": "application/pdf", + "description": "", + "family-id": "b38e8b10-7385-4478-bbd2-6439ec72a0c4", + "file-name": "Shivraj Singh Chouhan v. Speaker, Madhya Pradesh Legislative Assembly.pdf", + "id": "f05aeec6-e880-4b27-b43d-809aa750db81", + "metadata": Object { + "file-size": 726618, + }, + "page-url": "/story/ecfc249c-a760-49b5-bfd6-485773ab14c6/element/f05aeec6-e880-4b27-b43d-809aa750db81", + "s3-key": "barandbench/2020-04/61c11c1b-112f-46e6-9127-0869107858e2/Shivraj_Singh_Chouhan_v__Speaker__Madhya_Pradesh_Legislative_Assembly.pdf", + "subtype": "attachment", + "title": "", + "type": "file", + "url": "https://images.assettype.com/barandbench/2020-04/61c11c1b-112f-46e6-9127-0869107858e2/Shivraj_Singh_Chouhan_v__Speaker__Madhya_Pradesh_Legislative_Assembly.pdf", + }, + ], + "version": 2, + }, + ], + "comments": null, + "content-created-at": 1586767854816, + "content-type": "story", + "content-updated-at": 1586779628547, + "contributors": null, + "created-at": 1586771733171, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779628383, + "headline": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": null, + "hero-image-metadata": Object { + "file-name": "SC Leaders.jpg", + "file-size": 1105549, + "focus-point": Array [ + 1411, + 1242, + ], + "height": 1934, + "mime-type": "image/jpeg", + "width": 2560, + }, + "hero-image-s3-key": "barandbench/2020-03/980fbb13-7d99-46bf-b9d1-8fcbe0aa17c1/SC_Leaders.jpg", + "id": "ecfc249c-a760-49b5-bfd6-485773ab14c6", + "last-published-at": 1586779628383, + "linked-entities": Array [], + "linked-story-ids": Array [ + "6066e82b-b09f-4157-b872-ed2a05c8821c", + "4411e926-6322-453c-9996-3e05c7cadba0", + "018860ae-536c-4a2a-9793-de42ad850fb0", + "d26ace08-65f1-45f9-8339-1c5787a09c3d", + ], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 708281, + "owner-name": "Aditya AK", + "publish-at": null, + "published-at": 1586779628383, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 7, + "sections": Array [ + Object { + "collection": Object { + "id": 29911, + "name": "News", + "slug": "news", + }, + "data": null, + "display-name": "News", + "domain-slug": null, + "id": 14017, + "name": "News", + "parent-id": null, + "section-url": "https://www.barandbench.com/news", + "slug": "news", + }, + Object { + "collection": Object { + "id": 29912, + "name": "Litigation News (News)", + "slug": "litigation-news", + }, + "data": null, + "display-name": "Litigation News", + "domain-slug": null, + "id": 14018, + "name": "Litigation News", + "parent-id": 14017, + "section-url": "https://www.barandbench.com/news/litigation", + "slug": "litigation", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "The Supreme Court pronounced its judgment detailing the reasons for ordering a floor test in the Madhya Pradesh Legislative Assembly back in March.", + "meta-keywords": Array [ + "Madhya Pradesh Political Crisis", + "Floor Test", + "Supreme Court", + "Governor", + "Rebel MLAs", + "Congress", + "BJP", + "Madhya Pradesh", + ], + "meta-title": "Governor must bear in mind that purpose of ordering trust vote is not to displace governments: SC on Madhya Pradesh Political Crisis", + }, + "sequence-no": null, + "slug": "news/governor-must-bear-in-mind-that-purpose-of-ordering-trust-vote-is-not-to-displace-governments-sc-on-madhya-pradesh-political-crisis", + "status": "published", + "story-content-id": "ecfc249c-a760-49b5-bfd6-485773ab14c6", + "story-template": "text", + "story-version-id": "466650f3-6f48-4ac6-8fc8-abd9b41840ff", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006337, + "meta-description": null, + "meta-title": null, + "name": "Supreme Court of India", + "slug": "supreme-court-of-india", + "tag-type": "Tag", + }, + Object { + "id": 2007028, + "meta-description": null, + "meta-title": null, + "name": "Floor Test", + "slug": "floor-test", + "tag-type": "Tag", + }, + Object { + "id": 2007042, + "meta-description": null, + "meta-title": null, + "name": "Governor", + "slug": "governor", + "tag-type": "Tag", + }, + Object { + "id": 2525136, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh Political Crisis", + "slug": "madhya-pradesh-political-crisis", + "tag-type": "Tag", + }, + Object { + "id": 2525783, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh Speaker", + "slug": "madhya-pradesh-speaker", + "tag-type": "Tag", + }, + Object { + "id": 2530865, + "meta-description": null, + "meta-title": null, + "name": "Madhya Pradesh floor test", + "slug": "madhya-pradesh-floor-test", + "tag-type": "Tag", + }, + ], + "updated-at": 1586779626444, + "url": "https://www.barandbench.com/news/governor-must-bear-in-mind-that-purpose-of-ordering-trust-vote-is-not-to-displace-governments-sc-on-madhya-pradesh-political-crisis", + "version": 20, + "votes": Object {}, + "word-count": 1694, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 741116, + "assignee-name": "Aishwarya Iyer", + "author-id": 712872, + "author-name": "Dushyant Dave", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 712872, + "name": "Dushyant Dave", + "slug": "dushyant-dave", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586772566483, + "card-updated-at": 1586772813646, + "content-id": "f93dcd3d-fa68-41dc-9e08-e3b0d321dd06", + "content-version-id": "58c7ee09-2b1a-4c60-8ccf-c719899b7afc", + "id": "f93dcd3d-fa68-41dc-9e08-e3b0d321dd06", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "dba40f09-6005-4ba8-86e9-4fe549cd9aa2", + "id": "8f6fcce8-d938-4c5c-930a-0d3334cdfacc", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/8f6fcce8-d938-4c5c-930a-0d3334cdfacc", + "subtype": null, + "text": "

India, in general, and the Legal World, in particular, became poorer with the passing away of Shri Ashok Desai, fondly called as Ashokbhai by all.

", + "title": "", + "type": "text", + }, + ], + "version": 8, + }, + Object { + "card-added-at": 1586772605361, + "card-updated-at": 1586772813646, + "content-id": "c13d6c73-72fd-4bf6-b3f0-94c4b0279af8", + "content-version-id": "6807af5a-754d-426f-9f98-f72bdfaf4fa3", + "id": "c13d6c73-72fd-4bf6-b3f0-94c4b0279af8", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "f0efc2ac-a39b-46d4-9a4e-fb5e4229c07a", + "id": "9be37a56-0cad-45b8-8df4-3a843b35ed26", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/9be37a56-0cad-45b8-8df4-3a843b35ed26", + "subtype": null, + "text": "

A Legend in Legal Circles, he was the former Attorney General of India, Solicitor General of India, and Advocate General of Maharashtra. As a Senior Advocate, he was par excellence and admired by all in the Legal World.

", + "title": "", + "type": "text", + }, + ], + "version": 7, + }, + Object { + "card-added-at": 1586772619119, + "card-updated-at": 1586772813646, + "content-id": "5798e447-5a56-4048-8ad1-a74080717fb7", + "content-version-id": "f0bf2169-aed5-4d40-ac0f-b849b65d1f0a", + "id": "5798e447-5a56-4048-8ad1-a74080717fb7", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "7cb4e7f5-b6e6-46b9-bd7d-fb117e45cf3e", + "id": "29041999-a367-41d5-a067-8ac5912523ef", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/29041999-a367-41d5-a067-8ac5912523ef", + "subtype": null, + "text": "

In more than one sense, Ashokbhai was a Spiritual Philosopher, possessed of unselfish Love, Chittshuddhi (cleansing of heart) and achieving Moral Upliftments of highest levels.

", + "title": "", + "type": "text", + }, + ], + "version": 6, + }, + Object { + "card-added-at": 1586772643954, + "card-updated-at": 1586772813646, + "content-id": "a7804778-824c-4a63-acd5-bc282627efb7", + "content-version-id": "1e16f6ba-a2a6-4340-b3ee-c9d1e1197720", + "id": "a7804778-824c-4a63-acd5-bc282627efb7", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "5edbc7d1-d315-4970-a428-55ab52e23273", + "id": "e58edafe-c7d5-47fd-9976-5c50374e97ac", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/e58edafe-c7d5-47fd-9976-5c50374e97ac", + "subtype": null, + "text": "

There are very few people in life one can come across like him- ever so smiling- ever so helpful- ever so kind- ever so loving.

", + "title": "", + "type": "text", + }, + ], + "version": 5, + }, + Object { + "card-added-at": 1586772643954, + "card-updated-at": 1586772813646, + "content-id": "9ba19f67-ba21-45e4-a302-c7c35720512b", + "content-version-id": "f633bc59-2385-46ae-b925-f584573b59e6", + "id": "9ba19f67-ba21-45e4-a302-c7c35720512b", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "Jaipur Lit Fest", + "caption": "Ashok Desai", + "key": "barandbench/2020-04/a5c5ef4b-8843-4453-89bd-3953e2c7412f/ashok_desai.jpg", + "metadata": Object { + "file-name": "ashok desai.jpg", + "file-size": 459367, + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "Homage to Ashok Desai!", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "7d183025-862a-4f7e-a921-11ca753ce123", + "id": "1b53a73e-1f6a-49a6-9d01-e6c777195c7d", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/1b53a73e-1f6a-49a6-9d01-e6c777195c7d", + "subtype": null, + "text": "

As a Lawyer, he was simply one of the most outstanding of all. Extraordinarily brilliant, very well prepared in Law and Facts, extremely polite to the Bench and to his opponents. Yet, with his fair presentation in a very soothing voice, he could win over both the Bench and the Bar. Also, as a human being, he was highly accomplished. Possessed of noble virtues derived from his great Parents, highly educated, extremely well read and well informed, and widely travelled, Ashokbhai was an intellectual of a very high order. A great speaker and a patient listener; that made him an extremely enjoyable conversationalist, full of wit and information. Evenings spent with him would be treasured for a life-time.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8fb3ff66-34e3-42a2-bab2-e882188ce33f", + "id": "a823f3f9-8349-4769-8a27-d6780ba32f34", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/a823f3f9-8349-4769-8a27-d6780ba32f34", + "subtype": null, + "text": "

He had a very deep love for humanity and the Nation. He never missed reminding all who knew him, as to what was right and what was wrong in Public Life. His observations and remarks were a good guide to understand the state of the Nation.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "2e856dc3-db55-4c06-8e01-8ace25a6a347", + "id": "5519c178-1e3d-42f1-9dec-620fdcc1ee87", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/5519c178-1e3d-42f1-9dec-620fdcc1ee87", + "subtype": null, + "text": "

His humour in such conversation was lethal and apt. He could regale Friends for hours with his stories from his life time’s experiences.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "0f0b8b20-a480-40a9-ac64-5f889aca382c", + "id": "5f339eb5-3743-4abb-ac37-6ed3f6d14baf", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/5f339eb5-3743-4abb-ac37-6ed3f6d14baf", + "subtype": null, + "text": "

Ashokbhai had a deep understanding of Religions and was highly spiritual. He followed tenets of Buddhism and practised them in his own life. His beliefs were never dogmatic or rigid, but were very moderate and humane.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "115d1082-7436-4f8f-981c-8c086fc5471e", + "id": "b6d69e02-4516-403b-b30c-6533433f6af5", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/b6d69e02-4516-403b-b30c-6533433f6af5", + "subtype": null, + "text": "

Ashokbhai’s life journey is a classic example of what was said once, “Do not seek death… Death will find you… But, seek the road which makes death fulfilment.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "195be843-d2bb-4996-9a9e-4f1bf2c204ac", + "id": "e41e190e-2381-4cd3-88c7-5c81676f555d", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/e41e190e-2381-4cd3-88c7-5c81676f555d", + "subtype": null, + "text": "

Ashokbhai passed away peacefully and gracefully, today morning. Even in Death, he chose the Buddhist Path of Renunciation. But, Ashokbhai will never be forgotten for all his Deeds. His life will be an example for generations to come.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a2e9302-b634-4e3d-95cc-5848b949633d", + "id": "4ab5ccdc-5d0e-4388-9d5a-193f674f2b5f", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/4ab5ccdc-5d0e-4388-9d5a-193f674f2b5f", + "subtype": null, + "text": "

He leaves behind his wife, Suvarnaben, also an accomplished human being in her own right and a true life-time partner, his sons, Jai and Harsh, daughter Ami, and grandchildren on whom he doted.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "60b42055-6a90-4a00-bb96-9ec4c4e0db9c", + "id": "554231fd-5cd6-4c43-9d90-836a7d13f45c", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/554231fd-5cd6-4c43-9d90-836a7d13f45c", + "subtype": null, + "text": "

He also leaves behind large number of Friends and Admirers who will never forget him for all that he gave them.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "603fe320-b7f3-4d18-b8ea-b6058febbd91", + "id": "cd3aae96-549a-417f-9035-a517190eda62", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/cd3aae96-549a-417f-9035-a517190eda62", + "subtype": null, + "text": "

For my wife Ami and me, Ashokbhai was a source of nourishment in our lives, and a constant Friend, Philosopher and Guide.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "da473ed7-071e-4bf8-a378-3b7eb4730a31", + "id": "07d1e6cb-ed75-43ce-96c9-91dba6ea47e8", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/07d1e6cb-ed75-43ce-96c9-91dba6ea47e8", + "subtype": null, + "text": "

As Tagore famously said, Ashokbhai’s, “Life was beautiful like summer flowers and death like autumn leaves.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "8a132a9e-6646-480c-af8b-56e8b4227f01", + "id": "0d0a2a93-2a74-424c-bdf8-b17c5c864dd5", + "metadata": Object {}, + "page-url": "/story/b554a23c-3a48-41bd-9e0a-4ab7aacb6f80/element/0d0a2a93-2a74-424c-bdf8-b17c5c864dd5", + "subtype": null, + "text": "

May his soul Rest in Eternal Peace.

", + "title": "", + "type": "text", + }, + ], + "version": 5, + }, + ], + "comments": null, + "content-created-at": 1586772566479, + "content-type": "story", + "content-updated-at": 1586779427263, + "contributors": Array [], + "created-at": 1586775446476, + "custom-slug": "Homage to Ashok Desai!", + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779427147, + "headline": "The above image might either be blank or contain a fallback", + "hero-image-alt-text": null, + "hero-image-attribution": "Jaipur Lit Fest", + "hero-image-caption": "Ashok Desai", + "hero-image-metadata": null, + "hero-image-s3-key": null, + "id": "b554a23c-3a48-41bd-9e0a-4ab7aacb6f80", + "last-published-at": 1586779427147, + "linked-entities": Array [], + "linked-story-ids": Array [], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 741116, + "owner-name": "Aishwarya Iyer", + "publish-at": null, + "published-at": 1586779427147, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 2, + "sections": Array [ + Object { + "collection": Object { + "id": 29914, + "name": "Columns", + "slug": "columns", + }, + "data": null, + "display-name": "Columns", + "domain-slug": null, + "id": 14020, + "name": "Columns", + "parent-id": null, + "section-url": "https://www.barandbench.com/columns", + "slug": "columns", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "Dushyant Dave pens down his heartfelt homage to the former Attorney General of India.", + "meta-keywords": Array [ + "Ashok Desai", + ], + "meta-title": "Homage to Ashok Desai!", + }, + "sequence-no": null, + "slug": "columns/homage-to-ashok-desai", + "status": "published", + "story-content-id": "b554a23c-3a48-41bd-9e0a-4ab7aacb6f80", + "story-template": "text", + "story-version-id": "05132761-e379-4366-82f2-a3e8004d64d5", + "storyline-id": null, + "storyline-title": null, + "subheadline": "Dushyant Dave pens down his heartfelt homage to the former Attorney General of India.", + "summary": null, + "tags": Array [ + Object { + "id": 2008519, + "meta-description": null, + "meta-title": null, + "name": "Tribute", + "slug": "tribute", + "tag-type": "Tag", + }, + Object { + "id": 2017547, + "meta-description": null, + "meta-title": null, + "name": "Ashok Desai", + "slug": "ashok-desai", + "tag-type": "Tag", + }, + ], + "updated-at": 1586775473117, + "url": "https://www.barandbench.com/columns/homage-to-ashok-desai", + "version": 10, + "votes": Object {}, + "word-count": 501, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 708278, + "assignee-name": "Meera Emmanuel", + "author-id": 1269195, + "author-name": "Deepak Joshi", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 1269195, + "name": "Deepak Joshi", + "slug": "deepak-joshi", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586183543930, + "card-updated-at": 1586691056845, + "content-id": "16ac8c10-5089-4c19-93e9-053af705eae3", + "content-version-id": "480fc739-6eb8-44a0-a28d-3dfbf8825b95", + "id": "16ac8c10-5089-4c19-93e9-053af705eae3", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "NCLAT", + "key": "barandbench/import/2019/10/NCLAT-7.jpg", + "metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "14397fb8-87f8-4547-98d2-51e96e29a083", + "id": "2d73db20-39ec-4436-b483-db9b683f8f72", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/2d73db20-39ec-4436-b483-db9b683f8f72", + "subtype": null, + "text": "

A decision was recently rendered by a rare sitting of a five-member bench of the National Company Law Appellate Tribunal (NCLAT) in the matter of V Padmakumar v. Stressed Assets Stabilisation Fund (SASF) & Anr.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "08f0ab98-e52a-45fe-8612-ce3ce4947a34", + "id": "75f5a267-d822-4b47-bde3-6ede5ebaf1ab", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/75f5a267-d822-4b47-bde3-6ede5ebaf1ab", + "subtype": null, + "text": "

One of the ancillary issues which came to be considered was whether reflection of debt in the books of accounts tantamounts to acknowledgment of debt under Section 18 of the Limitation Act, 1963, and thereby extends the period of limitation.

", + "title": "", + "type": "text", + }, + ], + "version": 35, + }, + Object { + "card-added-at": 1586183543930, + "card-updated-at": 1586625918989, + "content-id": "a299ad0a-ed22-414e-ac08-6be64fb2ef02", + "content-version-id": "b1a77cbf-4d14-4d64-8273-41d254c6ebe6", + "id": "a299ad0a-ed22-414e-ac08-6be64fb2ef02", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "NCLAT", + "key": "barandbench/import/2019/10/NCLAT-7.jpg", + "metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "1d741c98-5ece-4082-aaf3-a1199a04087f", + "id": "d74476f9-3225-4930-8e8c-88ec9bf34d11", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/d74476f9-3225-4930-8e8c-88ec9bf34d11", + "subtype": null, + "text": "

The decision was not a unanimous one – it was a majority decision of 4:1. The majority concluded that the filing of balance sheet being mandatory under the Companies Act, 2013, it cannot be treated to be an acknowledgement under Section 18.

The dissent concludes that the recording of debt will be valid acknowledgment under Section 18. With respect, the author through this article, has attempted to conclude that it is in fact the dissent that is correct and should hold the field.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "214acbda-5ba7-4d8c-995c-1cd671a09762", + "id": "8e5eb517-5345-4a4f-8ace-e6bd8ca50d3c", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/8e5eb517-5345-4a4f-8ace-e6bd8ca50d3c", + "subtype": null, + "text": "Majority Decision", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "5c4d8010-bfd4-4e5c-813d-7fe2a6482f6f", + "id": "d8dc9422-c437-4328-ba97-81ca91b6f124", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/d8dc9422-c437-4328-ba97-81ca91b6f124", + "subtype": null, + "text": "

The decision of the majority can be summarised as follows:

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "e74a8d66-b15d-4715-b278-6f1c6455d89f", + "id": "cfebd047-9d5f-43d1-9f7b-ead90d421d0b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/cfebd047-9d5f-43d1-9f7b-ead90d421d0b", + "subtype": null, + "text": "
  • Filing of Balance Sheet being mandatory under Section 92(4) of the Companies Act, the same cannot be treated to be an acknowledgement under Section 18 of the Limitation Act.

  • If the argument is accepted that the Balance Sheet of the ‘Corporate Debtor’ amounts to acknowledgement under Section 18 then in such case, it is to be held that no limitation would be applicable because every year, it is mandatory for the ‘Corporate Debtor’ to file Balance Sheet.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "d74655ed-530f-4350-a163-e917f4455fd7", + "id": "963914e7-1a9f-4e4c-850e-000112c26703", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/963914e7-1a9f-4e4c-850e-000112c26703", + "subtype": null, + "text": "Debt in Financial Statements - Accountancy and Law", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "44a0dfb7-349a-46fc-89a3-2b5f044116db", + "id": "e284f633-ee85-401d-a04d-a069a8d00e31", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/e284f633-ee85-401d-a04d-a069a8d00e31", + "subtype": null, + "text": "

Let us focus on few statutory and regulatory provisions pertaining to preparation of the financial statements.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "07cf1cf7-530f-4d4b-aa2d-be252c2842f8", + "id": "15c9f464-892d-48c2-8e24-0fb0b793a417", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/15c9f464-892d-48c2-8e24-0fb0b793a417", + "subtype": null, + "text": "

I. At the Stage of Preparation of Accounts

Section 128(1) of the Companies Act provides that every company shall prepare books of accounts and financial statements which give “true and fair view” of the state of the affairs of the company. Similarly, Section 129(1) mandates that the financial statements shall give a “true and fair view” of the state of affairs of the company and comply with the accounting standards notified under Section 133.

One of the accounting standards notified under Section 133 is Indian Accounting Standard – 1 (“Ind AS – 1”) which clearly provides that the financial statements shall present a true and fair view of the financial position, financial performance and cash flows of an entity with faithful representation of the effects of transactions.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "fedc3b44-6a4c-40d2-ace7-37c42a7f0768", + "id": "aa164961-eb30-4845-8cd2-2793716ec4fa", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/aa164961-eb30-4845-8cd2-2793716ec4fa", + "subtype": null, + "text": "

II. At the Stage of Auditing of Accounts

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "0feb918c-908f-418c-bd14-7448052e74c0", + "id": "217a1093-de43-4951-980a-57278869f1ee", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/217a1093-de43-4951-980a-57278869f1ee", + "subtype": null, + "text": "

It is important to consider one of the duties of the auditors as mandated by Section 143(2) whereunder the auditor has to make an audit report which after taking into consideration the accounts and financial statements, give a “true and fair view” of the state of the company’s affairs.

Implicit in this is the duty to verify transactions and take a prudent decision as to their recognition in the books of accounts. If the transaction appears to be true and fair, the auditor puts her seal of authenticity on it.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6da140f2-9cb8-4016-b860-154fd58efc94", + "id": "dd74c5a5-4c71-443e-9161-ac68ccb56cb2", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/dd74c5a5-4c71-443e-9161-ac68ccb56cb2", + "subtype": null, + "text": "

III. At the Stage of Presentation before the Shareholder

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "9646f70f-a739-4b65-891b-163faebdf523", + "id": "e7ba8288-179e-4ec5-93f5-f92283e4307b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/e7ba8288-179e-4ec5-93f5-f92283e4307b", + "subtype": null, + "text": "

The financial statements are laid in the annual general meeting. The same is also accompanied by a Directors’ Responsibility Statement under section 134(3)(c). The purpose of this statement is to state that the directors have made judgments and estimates that are reasonable and prudent so as to give a “true and fair view” of the state of affairs of the company.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ff517898-db08-46f2-8179-791c6594b8a0", + "id": "92dad19d-7607-4bb9-92ff-4776013012d3", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/92dad19d-7607-4bb9-92ff-4776013012d3", + "subtype": null, + "text": "

IV. True and Fair View - The Common Thread

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "4eacc90b-fefc-4028-90c5-5b892ab52ea0", + "id": "37789915-575e-4168-b42c-ba69e1d95080", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/37789915-575e-4168-b42c-ba69e1d95080", + "subtype": null, + "text": "

In view of the above, one can now appreciate that \\"true and fair view of the company affairs\\" is one of the most important objectives of preparing the financial statements. The board of directors applies its mind and the auditors undertake an extensive exercise to authenticate the books.

Hence, whatever is recorded in the books of accounts & financial statements, is presumed to give a true and fair view. Thus, there is a sanctity attached in law to the audited books of accounts.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ac18cc53-065d-4494-b26f-90e66faf50ba", + "id": "a77660e3-7376-4b28-9fce-d38703c872e4", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/a77660e3-7376-4b28-9fce-d38703c872e4", + "subtype": null, + "text": "

This was echoed by the Supreme Court in Ishwar Dass Jain v. Sohan Lal, when it held that the rationale behind admissibility of parties' books of account as evidence is that the regularity of habit, the difficulty of falsification, and the fair certainty of ultimate detection give them, to a sufficient degree, a probability of trustworthiness.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ab70ecc2-32a7-4ed6-8e11-e0fd2e758c63", + "id": "f646e4d8-b1d3-4a3e-9979-ce613fe7de5b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f646e4d8-b1d3-4a3e-9979-ce613fe7de5b", + "subtype": null, + "text": "

V. Acknowledgment of debt: The Jurisprudence

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6a0a935e-be23-4e50-8d21-34672ad09e89", + "id": "0af70ffc-18a5-4472-9949-7bc74197092e", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/0af70ffc-18a5-4472-9949-7bc74197092e", + "subtype": null, + "text": "

The interplay of accounting for debt in the books of accounts and its consequent effect under the Limitation Act can be traced back to an early decision of the Chancery Division in Re Atlantic and Pacific Fibre Importing and Manufacturing Co Ltd, which was approved by the King’s Bench Division in Jones v. Bellgrove Properties Ltd.

Here, it was held that a balance sheet prepared and signed by the directors and the auditors as the agents of the company and then presented at the general meeting constitutes a good acknowledgment for the purposes of extending the limitation.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "189d7d1e-9fab-463a-93d4-9f54235344cb", + "id": "8765a843-b77a-40d4-a9cd-a7d06f6aed50", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/8765a843-b77a-40d4-a9cd-a7d06f6aed50", + "subtype": null, + "text": "

The Indian jurisprudence is not limited only to the aspect of period of limitation, but the proposition is applied in various other fields of law like taxation, arbitration, civil procedure code, etc. as well.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "dc998ae5-95bd-4106-bdac-15e0db1ec84a", + "id": "3deae7ae-a160-4b72-b839-8f52c13b176f", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/3deae7ae-a160-4b72-b839-8f52c13b176f", + "subtype": null, + "text": "

In terms of Income Tax Act, 1961, the Gujarat High Court in Ambika Mills Ltd. v. CIT, held that the liability in respect of unpaid wages was acknowledged by the assesse company at the end of each year in its balance sheets and hence those amounts retained the character of liabilities owing to the annual acknowledgments made by the assessee company.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "47e34579-3c93-4233-ac78-977d8c2b82ed", + "id": "7be27a5b-13d3-4565-897d-70171137017a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/7be27a5b-13d3-4565-897d-70171137017a", + "subtype": null, + "text": "

Similarly, the Madras High Court in CIT vs. Tamilnadu Warehousing Corporation, has held that once debt was shown as liability by the assessee in the books of accounts, the department was wrong in holding that it was assessable as income because there was no cessation of liability.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "38fcd092-0eed-4e5e-a260-1530ffed014d", + "id": "f92f2513-1532-4759-b0f8-c26bd8e26351", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f92f2513-1532-4759-b0f8-c26bd8e26351", + "subtype": null, + "text": "

The Supreme Court had the occasion to consider the plea of debt being acknowledged under the Negotiable Instruments Act, 1881 in AV Murthy v. BS Nagabasavanna, wherein it was held that if the amount borrowed by the respondent is shown in the balance sheet, it may amount to acknowledgement.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6715c512-827b-4214-b6fc-9cccafdbb5c0", + "id": "847a8fcc-e4a9-4584-a545-a1e831bf3dba", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/847a8fcc-e4a9-4584-a545-a1e831bf3dba", + "subtype": null, + "text": "

While considering Order 6 Rule 12, the Bombay High Court in Deccan Chronicle Holdings Ltd v. Tata Capital Financial Services Ltd held that an admission in the balance sheet of a company unless contradicted or refuted, would operate as an estoppel and would be the decisive factor for passing a decree for admission.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "ee941ce2-520c-429f-bba6-a6bfba4410de", + "id": "6c0526b4-6195-4515-8e91-7e0a2cedc249", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/6c0526b4-6195-4515-8e91-7e0a2cedc249", + "subtype": null, + "text": "

It’s not as if the point of view that the financial statements have been made under compulsion of law has not been raised or is decided for the first time. The Calcutta High Court, as far back as in 1962 in Bengal Silk Mills Co. Vs. Ismail Golam Hossain Ariff, held that statement of a liability in the balance sheet amounted to acknowledgement of a debt giving rise to a fresh period of limitation, notwithstanding the fact that the balance sheet was prepared under 'compulsions of statute’.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "3131ff19-c583-4872-a7d9-cc3246ae656e", + "id": "cd18e4d5-81cf-4d83-88df-18dbfe523e41", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/cd18e4d5-81cf-4d83-88df-18dbfe523e41", + "subtype": null, + "text": "

More specifically, the Delhi High Court in Shahi Exports Pvt. Ltd. v. CMD Buildtech Pvt. Ltd concluded that it is a well-established position that an entry made in the company's balance sheet amounts to an acknowledgement of the debt and has the effect of extending the period of limitation under Section 18 of the Limitation Act.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "3603d40c-7575-4d55-ab13-8cdd779f0689", + "id": "0e260c79-3ad4-4ba1-ade1-5f7e509f9d7a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/0e260c79-3ad4-4ba1-ade1-5f7e509f9d7a", + "subtype": null, + "text": "

Finally, the Supreme Court has also held in unequivocal terms that entries in the books of accounts would amount to an acknowledgement of the liability within the meaning of Section 18 of the Limitation Act.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "dbb8878a-fc29-4b8e-9982-ef8e13f5f4ce", + "id": "01140c6c-3abf-4764-8bed-8dd0e2d6894a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/01140c6c-3abf-4764-8bed-8dd0e2d6894a", + "subtype": null, + "text": "A Caveat", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "7c92f65d-c3c8-4d33-9243-1e172b7d2c1b", + "id": "58e3afa8-49cb-4e72-bde0-755e7102d00a", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/58e3afa8-49cb-4e72-bde0-755e7102d00a", + "subtype": null, + "text": "

However, it is pertinent to note that there is one important caveat that has been explained by the Delhi High Court. Sometimes, the directors in their report explain certain transactions. Therefore, in explaining the statements in the balance sheets, the directors' report must be taken together to find out the true meaning and purport of the statements.

In such a scenario, the Delhi High Court speaking through Justice AK Sikri (as he then was) in Sheetal Fabrics v. Coir Cushions Ltd, laid down that a statement in the balance sheet indicating liability is to be read along with the directors' report to see whether both so read would amount to an acknowledgement.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "17afebdc-dbf2-4431-885c-2fcb7e96b2cf", + "id": "b1156aca-64d6-4274-8751-9c3dadb6b91b", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/b1156aca-64d6-4274-8751-9c3dadb6b91b", + "subtype": null, + "text": "Conclusion", + "title": "", + "type": "title", + }, + Object { + "description": "", + "family-id": "5936eb59-0fcc-4693-a1f6-45e4dc7d16cc", + "id": "725e2aa5-9c5e-43ec-93ba-1cb7dc9b94a2", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/725e2aa5-9c5e-43ec-93ba-1cb7dc9b94a2", + "subtype": null, + "text": "

The majority members of the NCLAT have not considered the above aspects – both legal as well as accounting – while delivering the judgment on the issue.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "2287e5fd-b7fb-457e-9646-81f2bd5dc459", + "id": "f5ce5659-f43a-49d2-bb11-dff5c764acb0", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/f5ce5659-f43a-49d2-bb11-dff5c764acb0", + "subtype": null, + "text": "
  1. The books of accounts hold an important status in the eyes of law and cannot be wished away simply because they are prepared under compulsion of law.

  2. There was a compulsion upon the directors to prepare the financial statements but there was no compulsion upon them to make any particular admission.

  3. They faithfully discharged their duty and in doing so they made honest admissions of the company's liabilities. Those admissions, though made in discharge of their duty, are nevertheless conscious and voluntary admissions.

  4. The NCLAT (majority) has unfortunately not dealt with Sections 128 129, 143 and 134 of the Companies Act, 2013 as well as the decisions cited above.

  5. The sanctity attached in law to the financial statements has been respected when the dispute is in the realm of taxation, company law, insolvency, arbitration, civil procedure code, negotiable instruments, etc. and has rightly stood the test of time.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "6b0870bd-f377-45eb-b8e2-802cff709f95", + "id": "3eb35947-690f-46b0-b866-da74b3b00045", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/3eb35947-690f-46b0-b866-da74b3b00045", + "subtype": null, + "text": "

The minority decision has referred to few aspects discussed above. It is hoped that the majority decision is corrected and the minority view is upheld by the Supreme Court as and when the occasion so arises.

Failure to do so would lead to difficulty, as this five-member bench decision is binding on all the benches of NCLAT and would certainly apply with full force before NCLT benches.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "24c2cafa-bff5-4488-a09c-756e19b07ee5", + "id": "1a3f3f00-436a-40dd-87f7-5907ef89f57d", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/1a3f3f00-436a-40dd-87f7-5907ef89f57d", + "subtype": null, + "text": "

Till then, we can only seek recourse to the words of Chief Justice Hughes who wrote that a dissenting decision is “an appeal to the brooding spirit of the law, to the intelligence of a future day, when a later decision may possibly correct the error into which the dissenting judge believes the court to have been betrayed.”

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "1abb1d50-d899-4511-bf9b-2cb216968af9", + "id": "1e9bd9db-44bf-40d7-a026-301b2eee58a3", + "metadata": Object {}, + "page-url": "/story/e46ad145-c0e2-472a-abe0-5fa0fd2e85e6/element/1e9bd9db-44bf-40d7-a026-301b2eee58a3", + "subtype": null, + "text": "

The author is a dually qualified professional. He is a graduate of Campus Law Centre, Faculty of Law, University of Delhi and a Fellow Chartered Accountant. He currently practices law in the courts of Delhi. He can be reached at mail@deepakjoshi.in

", + "title": "", + "type": "text", + }, + ], + "version": 33, + }, + ], + "comments": null, + "content-created-at": 1586183486596, + "content-type": "story", + "content-updated-at": 1586779256142, + "contributors": Array [], + "created-at": 1586691056788, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586779255932, + "headline": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": "NCLAT", + "hero-image-metadata": Object { + "focus-point": Array [ + 450, + 250, + ], + "height": 500, + "width": 900, + }, + "hero-image-s3-key": "barandbench/import/2019/10/NCLAT-7.jpg", + "id": "e46ad145-c0e2-472a-abe0-5fa0fd2e85e6", + "last-published-at": 1586779255932, + "linked-entities": Array [], + "linked-story-ids": Array [], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 708278, + "owner-name": "Meera Emmanuel", + "publish-at": null, + "published-at": 1586779255932, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 7, + "sections": Array [ + Object { + "collection": Object { + "id": 29914, + "name": "Columns", + "slug": "columns", + }, + "data": null, + "display-name": "Columns", + "domain-slug": null, + "id": 14020, + "name": "Columns", + "parent-id": null, + "section-url": "https://www.barandbench.com/columns", + "slug": "columns", + }, + Object { + "collection": Object { + "id": 29915, + "name": "Litigation Columns (Columns)", + "slug": "litigation-columns-columns", + }, + "data": null, + "display-name": "Litigation Columns", + "domain-slug": null, + "id": 14021, + "name": "Litigation Columns", + "parent-id": 14020, + "section-url": "https://www.barandbench.com/columns/litigation-columns", + "slug": "litigation-columns", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "An analysis of the NCLAT's decision in the matter of V Padmakumar v. Stressed Assets Stabilisation Fund (SASF) & Anr. ", + "meta-keywords": Array [ + "NCLAT", + "V. Padmakumar vs. Stressed Assets Stabilisation Fund (SASF) & Anr", + "IBC", + "Deepak Joshi", + ], + "meta-title": "The NCLAT's majority decision on acknowledgement of debt in balance sheets: An appeal to the brooding spirit of law", + }, + "sequence-no": null, + "slug": "columns/the-nclats-majority-decision-on-acknowledgement-of-debt-in-balance-sheets-an-appeal-to-the-brooding-spirit-of-law", + "status": "published", + "story-content-id": "e46ad145-c0e2-472a-abe0-5fa0fd2e85e6", + "story-template": "text", + "story-version-id": "b6df935c-e707-46f4-a75e-7d7a6892139a", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006487, + "meta-description": null, + "meta-title": null, + "name": "IBC", + "slug": "ibc", + "tag-type": "Tag", + }, + Object { + "id": 2006488, + "meta-description": null, + "meta-title": null, + "name": "Insolvency and Bankruptcy Code", + "slug": "insolvency-and-bankruptcy-code", + "tag-type": "Tag", + }, + Object { + "id": 2006508, + "meta-description": null, + "meta-title": null, + "name": "NCLAT", + "slug": "nclat", + "tag-type": "Tag", + }, + Object { + "id": 2006798, + "meta-description": null, + "meta-title": null, + "name": "National Company Law Appellate Tribunal", + "slug": "national-company-law-appellate-tribunal", + "tag-type": "Tag", + }, + ], + "updated-at": 1586691056788, + "url": "https://www.barandbench.com/columns/the-nclats-majority-decision-on-acknowledgement-of-debt-in-balance-sheets-an-appeal-to-the-brooding-spirit-of-law", + "version": 38, + "votes": Object {}, + "word-count": 1675, + }, + Object { + "access": null, + "access-level-value": null, + "alternative": Object {}, + "asana-project-id": null, + "assignee-id": 1268959, + "assignee-name": "Debayan Roy", + "author-id": 1268959, + "author-name": "Debayan Roy", + "authors": Array [ + Object { + "avatar-s3-key": null, + "avatar-url": null, + "bio": null, + "contributor-role": null, + "id": 1268959, + "name": "Debayan Roy", + "slug": "debayan-roy", + "twitter-handle": null, + }, + ], + "autotags": Array [], + "breaking-news-linked-story-id": null, + "bullet-type": "123", + "canonical-url": null, + "cards": Array [ + Object { + "card-added-at": 1586749383438, + "card-updated-at": 1586785019187, + "content-id": "c4351a17-e731-4278-a4b1-9314bc6c4de3", + "content-version-id": "1f4be133-e82e-47ad-ba27-ca03d973e625", + "id": "c4351a17-e731-4278-a4b1-9314bc6c4de3", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": "", + "caption": null, + "key": "barandbench/2020-04/bed7d33a-74c2-4505-b6a7-113913020a40/Screenshot_2020_04_05_at_6_26_24_PM.png", + "metadata": Object { + "height": 1128, + "width": 1526, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "40f72763-ab44-46a2-94b9-1425c92ef9f1", + "id": "7ab5e5fa-b9ec-4582-bd07-2fe15a18c2b2", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/7ab5e5fa-b9ec-4582-bd07-2fe15a18c2b2", + "subtype": null, + "text": "

The Supreme Court today refused to hear the petition filed by Jamiat Ulema-e-Hind against communalization of the Nizamuddin Markaz issue, unless the Press Council of India (PCI) was made a party to the case.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "95aabd3c-7a87-4cbe-b80b-a8808671a10d", + "id": "939e4ed4-2859-4c2b-85a4-0459bd4c3d24", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/939e4ed4-2859-4c2b-85a4-0459bd4c3d24", + "subtype": null, + "text": "

Advocate-on-Record Ejaz Maqbool urged the Court that there was violence due to the constant news reporting around the Tablighi Jamaat members.

However, the Bench headed by Chief Justice of India SA Bobde maintained in the hearing conducted through video conferencing,

\\"We cannot curb the freedom of press.\\"

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "766ba29a-6861-4661-b666-10dccd4275b2", + "id": "0e9bb128-3fd3-4221-aa23-1bfacdffdad6", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/0e9bb128-3fd3-4221-aa23-1bfacdffdad6", + "subtype": null, + "text": "

Maqbool persisted with the Court that in Karnataka, there have been incidents of violence owing to the reportage, and that names of people have been made public.

In response, CJI Bobde stated that if it was a question of killing, defamation \\"then your remedy is somewhere else,\\" but \\"if it's a question of larger reporting then PCI has to be made party.\\"

The case is now likely to be heard next week.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "b3c91ee0-dd81-4f6e-a008-a9d95b4bf3a5", + "id": "001f82d7-9d8e-48f5-93e6-9c108a7dc0ef", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/001f82d7-9d8e-48f5-93e6-9c108a7dc0ef", + "subtype": null, + "text": "

The Bench led by CJI SA Bobde was hearing a plea by Jamiat Ulema-e-Hind which had claimed that the media has communalised the Nizamuddin Markaz event, where about 2,500 individuals congregated in the midst of the Coronavirus outbreak.

", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7fa32a56-1e4a-486f-9ba5-c17efe3ef221", + "id": "d391bc45-65a2-4fae-b24f-9bf7a89e33ef", + "metadata": Object { + "linked-story": Object { + "headline": "Breaking: Petition filed in Supreme Court seeking action against media for communalizing Nizamuddin Markaz issue +", + "highlighted-headline": null, + "highlighted-text": "", + "id": "383c6985-41bb-4500-95ea-5603af6e2afb", + "story-content-id": "383c6985-41bb-4500-95ea-5603af6e2afb", + }, + "linked-story-id": "383c6985-41bb-4500-95ea-5603af6e2afb", + }, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/d391bc45-65a2-4fae-b24f-9bf7a89e33ef", + "subtype": "also-read", + "text": "Breaking: Petition filed in Supreme Court seeking action against media for communalizing Nizamuddin Markaz issue +", + "title": "", + "type": "text", + }, + Object { + "description": "", + "family-id": "7189eac5-c245-44e8-96c5-616373971a46", + "id": "020b0a61-d4b2-484b-ac91-a6ac161fd24a", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/020b0a61-d4b2-484b-ac91-a6ac161fd24a", + "subtype": null, + "text": "

The plea filed by Advocate Ejaz Maqbool states that reports on the Tablighi Jamaat by certain sections of print and electronic media has \\"demonised the entire Muslim community.\\"

The plea further states that this demonization of the community has led to serious \\"threat to life and liberty of Muslims\\", and has thus led to the violation of their \\"Right to life under Article 21.\\"

The petition says that most of the reports presented the facts in a twisted manner, using phrases like \\"Corona Jihad\\", \\"Corona Terrorism\\" or \\"Islamic Resurrection\\".

The petitioner organisation contends that if there is any delay in ordering a directive to stop communal reporting regarding the Markaz issue, it would only “promote ill-will, enmity and hatred towards the Muslim community in India.”

", + "title": "", + "type": "text", + }, + Object { + "alt-text": "Alt text", + "description": "", + "family-id": "0dd8dafe-a02c-4331-8f2e-69612cd6db15", + "id": "c048c43e-da73-4130-9fc6-4a672fd28983", + "image-attribution": "", + "image-metadata": Object { + "height": 1128, + "width": 1526, + }, + "image-s3-key": "barandbench/2020-04/bed7d33a-74c2-4505-b6a7-113913020a40/Screenshot_2020_04_05_at_6_26_24_PM.png", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/c048c43e-da73-4130-9fc6-4a672fd28983", + "subtype": null, + "title": "Media on Markaz: Corona Jihad etc", + "type": "image", + }, + ], + "version": 24, + }, + Object { + "card-added-at": 1586749579058, + "card-updated-at": 1586749659974, + "content-id": "9e15edc4-4ba3-4417-b0b2-e8fb50d168dd", + "content-version-id": "0a39ce47-cbc1-4f28-812c-5c35fdc704a9", + "id": "9e15edc4-4ba3-4417-b0b2-e8fb50d168dd", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "a6ae8ce1-830c-47f3-8900-9ee09caf338b", + "id": "37560c3b-e9a6-4e71-94dd-52042cfc0370", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/37560c3b-e9a6-4e71-94dd-52042cfc0370", + "subtype": null, + "text": "

The petition has listed “several social media posts” which “wrongly showed Muslims doing deliberate acts to spread COVID-19.” The plea has also given links to fact check reports that have gone on to prove that such reports were malicious and “were old unrelated videos.”

Further, the plea noted that while such reports demonising the Muslim community have flooded social media, platforms like Twitter have taken no action in accordance with their standard practice and guidelines.

One of the fake social media posts highlighted in the plea was a mass Muslim religious gathering where an act of “mass sneezing” was reported. However, the petition has given links to fact check reports highlighting how it was a Sufi practice which was falsely reported as an effort to spread the Coronavirus pandemic.

", + "title": "", + "type": "text", + }, + ], + "version": 4, + }, + Object { + "card-added-at": 1586749625909, + "card-updated-at": 1586749659974, + "content-id": "860f4375-707d-461d-882b-9d29e9731a96", + "content-version-id": "ec7e3ebe-cfdb-432a-9b4d-a673ac2aa1b5", + "id": "860f4375-707d-461d-882b-9d29e9731a96", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "b72c07fc-72f4-406d-9723-dcf09cfb4c0c", + "id": "eb9eb938-f3fa-4ee0-91bb-dcd14713bbbb", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/eb9eb938-f3fa-4ee0-91bb-dcd14713bbbb", + "subtype": null, + "text": "

The petition stated that such fake reports were in violation of the Supreme Court's order of March 31, by which the media was directed to publish “official version of reports” dealing with the COVID-19 outbreak. It is stated,

“Media was directed to maintain a strong sense of responsibility and ensure that unverified news capable of causing panic would not be disseminated.”

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + Object { + "card-added-at": 1586749625909, + "card-updated-at": 1586749659974, + "content-id": "432ecfdc-5f79-472d-bb0c-c67235cc761c", + "content-version-id": "5e7f4067-dbfc-4f78-b779-51b9d716b61e", + "id": "432ecfdc-5f79-472d-bb0c-c67235cc761c", + "metadata": Object { + "attributes": Object {}, + "social-share": Object { + "image": Object { + "attribution": null, + "caption": "Tablighi Jamaat", + "key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "url": null, + }, + "message": null, + "shareable": false, + "title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + }, + "status": "draft", + "story-elements": Array [ + Object { + "description": "", + "family-id": "79f99135-c1a6-4376-814b-16836058c7fb", + "id": "66305351-d774-497c-9ce3-45ea83868e2b", + "metadata": Object {}, + "page-url": "/story/1ddb7538-5ac3-4939-947d-bbda4912152d/element/66305351-d774-497c-9ce3-45ea83868e2b", + "subtype": null, + "text": "

The petition had prayed for strict action against “sections of media spreading bigotry and communal hatred in relation to the Nizamuddin Markaz issue”. It goes on to highlight that the recent Delhi riots was one of the “worst communal riots in the Union territory’s history” and that communalising the Tablighi Jamaat meet puts the “law and order situation of the entire state\\" at risk.

", + "title": "", + "type": "text", + }, + ], + "version": 2, + }, + ], + "comments": null, + "content-created-at": 1586749310815, + "content-type": "story", + "content-updated-at": 1586785024223, + "contributors": Array [], + "created-at": 1586785019173, + "custom-slug": null, + "entities": Object {}, + "external-id": null, + "first-published-at": 1586777615361, + "headline": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + "hero-image-alt-text": null, + "hero-image-attribution": null, + "hero-image-caption": "Tablighi Jamaat", + "hero-image-metadata": Object { + "file-name": "Tablighi Jamaat and supreme court.jpg", + "file-size": 600380, + "focus-point": Array [ + 2033, + 230, + ], + "height": 960, + "mime-type": "image/jpeg", + "width": 2560, + }, + "hero-image-s3-key": "barandbench/2020-04/0505243f-0130-4189-8636-cf21ad9e61c5/Tablighi_Jamaat_and_supreme_court.jpg", + "id": "1ddb7538-5ac3-4939-947d-bbda4912152d", + "last-correction-published-at": 1586785024210, + "last-published-at": 1586777615361, + "linked-entities": Array [], + "linked-story-ids": Array [ + "383c6985-41bb-4500-95ea-5603af6e2afb", + ], + "metadata": Object { + "card-share": Object { + "shareable": false, + }, + }, + "owner-id": 1268959, + "owner-name": "Debayan Roy", + "publish-at": null, + "published-at": 1586777615361, + "publisher-id": 829, + "push-notification": null, + "push-notification-title": null, + "read-time": 3, + "sections": Array [ + Object { + "collection": Object { + "id": 29911, + "name": "News", + "slug": "news", + }, + "data": null, + "display-name": "News", + "domain-slug": null, + "id": 14017, + "name": "News", + "parent-id": null, + "section-url": "https://www.barandbench.com/news", + "slug": "news", + }, + Object { + "collection": Object { + "id": 29912, + "name": "Litigation News (News)", + "slug": "litigation-news", + }, + "data": null, + "display-name": "Litigation News", + "domain-slug": null, + "id": 14018, + "name": "Litigation News", + "parent-id": 14017, + "section-url": "https://www.barandbench.com/news/litigation", + "slug": "litigation", + }, + ], + "seo": Object { + "claim-reviews": Object { + "story": null, + }, + "meta-description": "The Supreme Court today refused to hear a petition against communalization of the Nizamuddin Markaz issue, unless the PCI was made a party to the case.", + "meta-keywords": Array [ + "Press Council of India ", + "Supreme Court of India", + "Jamiat Ulema-e-Hind", + "Ejaz Maqbool", + ], + "meta-title": "We cannot curb Freedom of Press, make Press Council of India a party: SC on Jamiat Ulema-e-Hind plea against communalization of Markaz Issue", + }, + "sequence-no": null, + "slug": "news/we-cannot-curb-freedom-of-press-make-press-council-of-india-a-party-sc-on-jamiat-ulema-e-hind-plea-against-communalization-of-markaz-issue", + "status": "published", + "story-content-id": "1ddb7538-5ac3-4939-947d-bbda4912152d", + "story-template": "text", + "story-version-id": "0628be41-29fc-483c-9594-3d876718a61c", + "storyline-id": null, + "storyline-title": null, + "subheadline": null, + "summary": null, + "tags": Array [ + Object { + "id": 2006321, + "meta-description": null, + "meta-title": null, + "name": "Supreme Court", + "slug": "supreme-court", + "tag-type": "Tag", + }, + Object { + "id": 2008575, + "meta-description": null, + "meta-title": null, + "name": "Press Council of India", + "slug": "press-council-of-india", + "tag-type": "Tag", + }, + Object { + "id": 2512358, + "meta-description": null, + "meta-title": null, + "name": "Coronavirus", + "slug": "coronavirus", + "tag-type": "Tag", + }, + Object { + "id": 2515491, + "meta-description": null, + "meta-title": null, + "name": "COVID-19", + "slug": "covid-19", + "tag-type": "Tag", + }, + Object { + "id": 2543019, + "meta-description": null, + "meta-title": null, + "name": "Nizammudin Markaz", + "slug": "nizammudin-markaz", + "tag-type": "Tag", + }, + Object { + "id": 2548753, + "meta-description": null, + "meta-title": null, + "name": "Freedom of Press", + "slug": "freedom-of-press", + "tag-type": "Tag", + }, + Object { + "id": 2548760, + "meta-description": null, + "meta-title": null, + "name": "Jamiat Ulema-e-Hind", + "slug": "jamiat-ulema-e-hind", + "tag-type": "Tag", + }, + ], + "updated-at": 1586785021649, + "url": "https://www.barandbench.com/news/we-cannot-curb-freedom-of-press-make-press-council-of-india-a-party-sc-on-jamiat-ulema-e-hind-plea-against-communalization-of-markaz-issue", + "version": 27, + "votes": Object {}, + "word-count": 575, + }, + ], + }, + "subscriptions": Object { + "fallbackEntitlement": Object { + "data": Object { + "isLast": false, + "isLoggedIn": [Function], + "numberRemaining": 2, + }, + "grantReason": [Function], + "granted": [Function], + "source": "fallback", + }, + "score": Object { + "isReadyToPay": 9, + "supportsViewer": 10, + }, + "services": Object { + "actions": Object { + "login": [Function], + "subscribe": [Function], + }, + "authorizationUrl": [Function], + "pingbackUrl": [Function], + }, + }, + "webengage": Object { + "isEnabled": true, + }, + }, + "slots": Object { + "story": Object { + "top-slot": [Function], + }, + }, + }, + "publisherConfig": Object { + "cdn-image": "gumlet.assettype.com", + "cdn-name": "https://thumbor-stg.assettype.com/", + "domains": Array [], + "env": "production", + "facebook": Object { + "app-id": "1234", + }, + "language": Object { + "direction": "ltr", + "ietf-code": "de-DE", + "iso-code": "en", + "name": "english", + }, + "layout": Object { + "no-of-visible-cards-in-a-blocked-story": 1, + }, + "publisher-id": 1, + "publisher-name": "vikatan", + "publisher-settings": Object { + "copyright": "Copyright © 2020 Newslaundry Media Private Limited. All Rights Reserved ", + "description": "We have finally migrated our website to better architecture! While the fancy new website will be up in a few months, we have fixed issues related to payment and login in the meantime. You will need to log in anew. If you have forgotten your password, you can generate one by clicking on the forgot password link (it works!). Send any questions or feedback to contact@newslaundry.com.", + "publisher-logo": null, + "title": "Newslaundry", + }, + "sections": Array [], + "sketches-host": "https://www.vikatan.com", + }, + } + } storyType="live-blog" /> diff --git a/src/templates/live-blog/live-blog.tsx b/src/templates/live-blog/live-blog.tsx index 2a9593d2..4980fabc 100644 --- a/src/templates/live-blog/live-blog.tsx +++ b/src/templates/live-blog/live-blog.tsx @@ -76,7 +76,7 @@ export const LiveBlog = ({ story, config }: CommonTemplateTypes) => { - + diff --git a/src/types/config.ts b/src/types/config.ts index 15ae703f..886ec599 100644 --- a/src/types/config.ts +++ b/src/types/config.ts @@ -150,6 +150,7 @@ export interface ConfigOpts { domainSlug?: string | null; templates?: object; slots?: SlotsTypes; + optimizeAmpHtml?: boolean; render?: { headerCardRender?: (props: Config) => any; navbarRender?: (props: NavbarTypes) => any;